Browse Source

Fixed unit tests no longer compiling

Thomas Buck 9 years ago
parent
commit
a9c5247665
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      test/CMakeLists.txt

+ 6
- 0
test/CMakeLists.txt View File

@@ -4,6 +4,12 @@ set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${OpenRaider_CXX_FLAGS_
4 4
 
5 5
 add_custom_target (check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure)
6 6
 
7
+# Add GLM Library
8
+find_package (GLM REQUIRED)
9
+if (GLM_FOUND)
10
+    include_directories (SYSTEM  ${GLM_INCLUDE_DIRS})
11
+endif (GLM_FOUND)
12
+
7 13
 #################################################################
8 14
 
9 15
 add_executable (tester_binary EXCLUDE_FROM_ALL

Loading…
Cancel
Save