summaryrefslogtreecommitdiffstats
path: root/Tests/MissingInstall/CMakeLists.txt
blob: 91624f710b26ab03af409902c9a4b86d7aac5bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cmake_minimum_required (VERSION 2.8.12)
project(TestMissingInstall)

set(CMAKE_SKIP_INSTALL_RULES ON)

# Skip the dependency that causes a build when installing.  This
# avoids infinite loops when the post-build rule below installs.
set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY 1)
set(CMAKE_SKIP_PACKAGE_ALL_DEPENDENCY 1)

if(CMAKE_CONFIGURATION_TYPES)
  set(MULTI_CONFIG ON)
else()
  set(MULTI_CONFIG OFF)
endif()

add_executable(mybin mybin.cpp)
install(TARGETS mybin RUNTIME DESTINATION bin)

add_custom_command(TARGET mybin
  POST_BUILD
  COMMAND ${CMAKE_COMMAND} "-DMULTI_CONFIG=${MULTI_CONFIG}"
    -P ${CMAKE_CURRENT_SOURCE_DIR}/ExpectInstallFail.cmake
  COMMENT "Install Project"
)