From fc55cacaac96b9a56748eba655f9a0e3c71c125c Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Tue, 15 Feb 2022 10:35:44 -0800 Subject: [PATCH] Optional toggles in CMake really set compile defs --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index abf53ca..d28bede 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,6 +44,7 @@ endif() option(BLAH_NO_FUNCTIONAL "Don't use std::function" OFF) option(BLAH_NO_SHARED_PTR "Don't use std::shared_ptr for Resources" OFF) +# tracks which libraries we need to link, depends on Options above set(LIBS "") # use the OpenGL Renderer Backend @@ -93,3 +94,7 @@ elseif (BLAH_PLATFORM_WIN32) endif() target_link_libraries(blah PRIVATE ${LIBS}) + +# toggle options +if (BLAH_NO_FUNCTIONAL) add_compile_definitions(BLAH_NO_FUNCTIONAL) endif() +if (BLAH_NO_SHARED_PTR) add_compile_definitions(BLAH_NO_SHARED_PTR) endif()