From 7056156273316a4a34bf41e944370af581353dec Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sat, 10 Feb 2018 21:24:21 -0500 Subject: [PATCH] Case sensitivity, but it doesn't show on VirtualBox because VirtualBox's file system for shared folders emulates Window's case insensitivity, lel! --- cmake/Modules/FindKaguyaBuild.cmake | 2 ++ cmake/Modules/FindLuaBridgeBuild.cmake | 2 ++ cmake/Modules/FindLuwraBuild.cmake | 2 ++ cmake/Modules/FindToLuappBuild.cmake | 1 + examples/interop/LuaBridge/CMakeLists.txt | 2 +- 5 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cmake/Modules/FindKaguyaBuild.cmake b/cmake/Modules/FindKaguyaBuild.cmake index ccd207db..d3dd370a 100644 --- a/cmake/Modules/FindKaguyaBuild.cmake +++ b/cmake/Modules/FindKaguyaBuild.cmake @@ -22,6 +22,8 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. include(ExternalProject) +include(FindPackageHandleStandardArgs) +include(Common/Core) # # Base variables set(kaguya_version 1.3.2) diff --git a/cmake/Modules/FindLuaBridgeBuild.cmake b/cmake/Modules/FindLuaBridgeBuild.cmake index f21e0b09..372be299 100644 --- a/cmake/Modules/FindLuaBridgeBuild.cmake +++ b/cmake/Modules/FindLuaBridgeBuild.cmake @@ -21,6 +21,8 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. include(ExternalProject) +include(FindPackageHandleStandardArgs) +include(Common/Core) # # Base variables set(luabridge_version 1.0.2) diff --git a/cmake/Modules/FindLuwraBuild.cmake b/cmake/Modules/FindLuwraBuild.cmake index be61cc81..e205435c 100644 --- a/cmake/Modules/FindLuwraBuild.cmake +++ b/cmake/Modules/FindLuwraBuild.cmake @@ -21,6 +21,8 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. include(ExternalProject) +include(FindPackageHandleStandardArgs) +include(Common/Core) # # Base variables set(luwra_version 0.5.0) diff --git a/cmake/Modules/FindToLuappBuild.cmake b/cmake/Modules/FindToLuappBuild.cmake index debe5c11..12502146 100644 --- a/cmake/Modules/FindToLuappBuild.cmake +++ b/cmake/Modules/FindToLuappBuild.cmake @@ -23,6 +23,7 @@ # # Standard CMake Libraries include(ExternalProject) include(FindPackageHandleStandardArgs) +include(Common/Core) # # Base variables set(toluapp_version 1.0.93) diff --git a/examples/interop/LuaBridge/CMakeLists.txt b/examples/interop/LuaBridge/CMakeLists.txt index 48523e0d..f0105d45 100644 --- a/examples/interop/LuaBridge/CMakeLists.txt +++ b/examples/interop/LuaBridge/CMakeLists.txt @@ -29,7 +29,7 @@ function (make_luabridge_interop_example target_library is_single) if (is_single) set(example_name "${example_name}.single") endif(is_single) - add_executable(${example_name} luabridge.cpp) + add_executable(${example_name} LuaBridge.cpp) target_link_libraries(${example_name} PUBLIC ${LUA_LIBRARIES} PRIVATE ${LUABRIDGE_LIBRARIES} ${target_library}) if (NOT MSVC) target_compile_options(${example_name} PRIVATE -Wno-noexcept-type -Wignored-qualifiers -Wunused-parameter)