diff options
| author | Jason Maskell <[email protected]> | 2016-05-16 15:00:36 +0200 |
|---|---|---|
| committer | Jason Maskell <[email protected]> | 2016-05-16 15:00:36 +0200 |
| commit | 3eb017d032e0c542401ea202f7a62b7c7ddcd498 (patch) | |
| tree | 6470077bdc344f1493778976917f7217a3159707 /CMakeLists.txt | |
| parent | Project now compiles with Cmake. (diff) | |
| download | waveworks_archive-3eb017d032e0c542401ea202f7a62b7c7ddcd498.tar.xz waveworks_archive-3eb017d032e0c542401ea202f7a62b7c7ddcd498.zip | |
Added the test_d3d11 app to the solution. Not compiling yet, mostly a paranoia commit.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9833f7d..fd0787f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,12 +6,8 @@ CMAKE_POLICY(SET CMP0057 NEW) # Enable IN_LIST SET(GW_DEPS_ROOT $ENV{GW_DEPS_ROOT}) -IF(NOT EXISTS ${GW_DEPS_ROOT}/CMakeModules) - MESSAGE(FATAL_ERROR "Could not find CMakeModules at ${GW_DEPS_ROOT}") -ENDIF() - LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/cmake) -LIST(APPEND CMAKE_MODULE_PATH ${GW_DEPS_ROOT}/CMakeModules) +LIST(APPEND CMAKE_MODULE_PATH ${GW_DEPS_ROOT}CMakeModules) MESSAGE(${CMAKE_MODULE_PATH}) @@ -128,3 +124,4 @@ SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${FINAL_OUTPUT_DIR}) # Include all of the projects INCLUDE(compiler/cmake/NvWaveWorks.cmake) +INCLUDE(compiler/cmake/test_d3d11.cmake) |