From 539774351723333d1248f8ab8461e07ffd1e06e3 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Tue, 18 Jun 2024 17:58:47 -0400 Subject: [PATCH] Remove Option --- CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d4ee7b..80e5ac2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,10 +6,7 @@ add_library(gles-compatibility-layer STATIC src/state.c src/passthrough.c src/ma target_link_libraries(gles-compatibility-layer m) # Include Path -option(GLES_COMPATIBILITY_LAYER_USE_DEFAULT_INCLUDE_PATH "Use Default Include Path" TRUE) -if(GLES_COMPATIBILITY_LAYER_USE_DEFAULT_INCLUDE_PATH) - target_include_directories(gles-compatibility-layer PUBLIC include) -endif() +target_include_directories(gles-compatibility-layer PUBLIC include) # Shaders include(cmake/util.cmake)