diff options
author | Ruslan Baratov <ruslan_baratov@yahoo.com> | 2019-03-27 19:36:51 (GMT) |
---|---|---|
committer | Ruslan Baratov <ruslan_baratov@yahoo.com> | 2019-03-27 19:39:02 (GMT) |
commit | dda01904587627a3d2bda5b684f7bef1e62596bb (patch) | |
tree | 34b65ed71c604b1aaf6e46e92d15b7cebb66d1b8 /Tests | |
parent | 390f14a24416f23801f5644eb51590f8317d35c7 (diff) | |
download | CMake-dda01904587627a3d2bda5b684f7bef1e62596bb.zip CMake-dda01904587627a3d2bda5b684f7bef1e62596bb.tar.gz CMake-dda01904587627a3d2bda5b684f7bef1e62596bb.tar.bz2 |
project: Add variable CMAKE_PROJECT_INCLUDE
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeOnly/CMakeLists.txt | 6 | ||||
-rw-r--r-- | Tests/CMakeOnly/ProjectIncludeAny/CMakeLists.txt | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Tests/CMakeOnly/CMakeLists.txt b/Tests/CMakeOnly/CMakeLists.txt index f40524f..57f0cf8 100644 --- a/Tests/CMakeOnly/CMakeLists.txt +++ b/Tests/CMakeOnly/CMakeLists.txt @@ -56,6 +56,12 @@ add_test(CMakeOnly.ProjectInclude ${CMAKE_CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/Test.cmake ) +add_test(CMakeOnly.ProjectIncludeAny ${CMAKE_CMAKE_COMMAND} + -DTEST=ProjectIncludeAny + -DCMAKE_ARGS=-DCMAKE_PROJECT_INCLUDE=${CMAKE_CURRENT_SOURCE_DIR}/ProjectInclude/include.cmake + -P ${CMAKE_CURRENT_BINARY_DIR}/Test.cmake + ) + include(CMakeParseArguments) function(add_major_test module) diff --git a/Tests/CMakeOnly/ProjectIncludeAny/CMakeLists.txt b/Tests/CMakeOnly/ProjectIncludeAny/CMakeLists.txt new file mode 100644 index 0000000..ffce488 --- /dev/null +++ b/Tests/CMakeOnly/ProjectIncludeAny/CMakeLists.txt @@ -0,0 +1,4 @@ +project(ProjectInclude LANGUAGES NONE) +if(NOT AUTO_INCLUDE) + message(FATAL_ERROR "include file not found") +endif() |