diff options
Diffstat (limited to 'libs')
-rw-r--r-- | libs/glfw-3.3.8/CMakeLists.txt | 8 | ||||
-rw-r--r-- | libs/honeysuckle/CMakeLists.txt | 3 |
2 files changed, 4 insertions, 7 deletions
diff --git a/libs/glfw-3.3.8/CMakeLists.txt b/libs/glfw-3.3.8/CMakeLists.txt index 7506916..ba96561 100644 --- a/libs/glfw-3.3.8/CMakeLists.txt +++ b/libs/glfw-3.3.8/CMakeLists.txt @@ -19,10 +19,10 @@ endif() set_property(GLOBAL PROPERTY USE_FOLDERS ON) option(BUILD_SHARED_LIBS "Build shared libraries" OFF) -option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" ON) -option(GLFW_BUILD_TESTS "Build the GLFW test programs" ON) -option(GLFW_BUILD_DOCS "Build the GLFW documentation" ON) -option(GLFW_INSTALL "Generate installation target" ON) +option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" OFF) +option(GLFW_BUILD_TESTS "Build the GLFW test programs" OFF) +option(GLFW_BUILD_DOCS "Build the GLFW documentation" OFF) +option(GLFW_INSTALL "Generate installation target" OFF) option(GLFW_VULKAN_STATIC "Assume the Vulkan loader is linked with the application" OFF) include(GNUInstallDirs) diff --git a/libs/honeysuckle/CMakeLists.txt b/libs/honeysuckle/CMakeLists.txt index 91222d2..1e16f40 100644 --- a/libs/honeysuckle/CMakeLists.txt +++ b/libs/honeysuckle/CMakeLists.txt @@ -3,9 +3,6 @@ project(honeysuckle VERSION 0.1.0 DESCRIPTION "A C library to make writing lua bindings simple") -find_package(Lua51 REQUIRED) -Include_directories(${LUA_INCLUDE_DIR}) - # build and link the library set(HS_ROOT ${honeysuckle_SOURCE_DIR}/src) set(HONEYSUCKLE_SOURCES |