From 85fb2bff38b2ef6cb17e86c5f602ee09a365b117 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 28 Aug 2019 00:57:57 -0400 Subject: Added LuaBridge support --- lib/LuaBridge/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/LuaBridge/CMakeLists.txt (limited to 'lib/LuaBridge/CMakeLists.txt') diff --git a/lib/LuaBridge/CMakeLists.txt b/lib/LuaBridge/CMakeLists.txt new file mode 100644 index 0000000..e18f198 --- /dev/null +++ b/lib/LuaBridge/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required (VERSION 3.5) + +project (LuaBridge) + +set (CMAKE_CXX_STANDARD 11) + +option (LUABRIDGE_NO_CXX11 "Use C++11 standard if supported by compiler" OFF) + +if (LUABRIDGE_NO_CXX11) + add_definitions (-DLUABRIDGE_NO_CXX11) +endif () + +set (gtest_force_shared_crt ON CACHE BOOL "Use /MD and /MDd" FORCE) +add_subdirectory (third_party/gtest) + +add_subdirectory (Source) + +add_subdirectory (Tests) -- cgit v1.2.3