From 74858e2b7f8e2c0fb33e8297ae7b297866a82a95 Mon Sep 17 00:00:00 2001 From: polymonster Date: Sun, 1 Oct 2023 17:01:59 +0100 Subject: [PATCH] - rename to curl_example to avoid incorrect, circular dependency --- .../code/{curl => curl_example}/curl_example.cpp | 0 examples/premake5.lua | 14 +++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) rename examples/code/{curl => curl_example}/curl_example.cpp (100%) diff --git a/examples/code/curl/curl_example.cpp b/examples/code/curl_example/curl_example.cpp similarity index 100% rename from examples/code/curl/curl_example.cpp rename to examples/code/curl_example/curl_example.cpp diff --git a/examples/premake5.lua b/examples/premake5.lua index a100178a..854851d6 100644 --- a/examples/premake5.lua +++ b/examples/premake5.lua @@ -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() ) @@ -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