Skip to content

Commit

Permalink
- rename to curl_example to avoid incorrect, circular dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
polymonster committed Oct 1, 2023
1 parent c551c39 commit 74858e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
File renamed without changes.
14 changes: 7 additions & 7 deletions examples/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ dofile "../tools/premake/app_template.lua"

-- Solution
solution ("pmtech_examples_" .. platform)
location ("build/" .. platform_dir )
location ("build/" .. platform_dir )
configurations { "Debug", "Release" }
startproject "empty_project"
buildoptions { build_cmd }
linkoptions { link_cmd }

-- to include shader_structs/
includedirs
{
"."
}
-- Engine Project

-- Engine Project
dofile "../core/pen/project.lua"

-- Toolkit Project
-- Toolkit Project
dofile "../core/put/project.lua"

-- Example projects
-- Example projects
-- ( project name, current script dir, )
create_app_example( "empty_project", script_path() ) -- hide
create_app_example( "clear", script_path() )
Expand Down Expand Up @@ -72,7 +72,7 @@ create_app_example( "stencil_shadows", script_path() )
create_app_example( "compute_demo", script_path() ) -- hide
create_app_example( "global_illumination", script_path() )
create_app_example( "game", script_path() ) -- hide
create_app_example( "curl", script_path() ) -- hide
create_app_example( "curl_example", script_path() ) -- hide

-- currently web audio is not implemented
if platform ~= "web" then
Expand Down

0 comments on commit 74858e2

Please sign in to comment.