cmake/Tests/VSExternalInclude/CMakeLists.txt

70 lines
2.3 KiB
CMake
Raw Normal View History

cmake_minimum_required (VERSION 2.6)
2013-03-16 19:13:01 +02:00
project(VSExternalInclude)
2016-10-30 18:24:19 +01:00
if(${CMAKE_GENERATOR} MATCHES "Visual Studio 1[01245]")
2013-03-16 19:13:01 +02:00
set(PROJECT_EXT vcxproj)
2016-07-09 11:21:54 +02:00
else()
set(PROJECT_EXT vcproj)
2013-03-16 19:13:01 +02:00
endif()
# make sure directories exists
2013-03-16 19:13:01 +02:00
set(LIB1_BINARY_DIR ${VSExternalInclude_BINARY_DIR}/Lib1)
make_directory("${LIB1_BINARY_DIR}")
2013-03-16 19:13:01 +02:00
set(LIB2_BINARY_DIR ${VSExternalInclude_BINARY_DIR}/Lib2)
make_directory("${LIB2_BINARY_DIR}")
# generate lib1
2013-03-16 19:13:01 +02:00
execute_process(
2015-04-27 22:25:09 +02:00
COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}"
-A "${CMAKE_GENERATOR_PLATFORM}"
-T "${CMAKE_GENERATOR_TOOLSET}" "${VSExternalInclude_SOURCE_DIR}/Lib1"
2013-03-16 19:13:01 +02:00
WORKING_DIRECTORY ${LIB1_BINARY_DIR}
OUTPUT_VARIABLE OUT
ERROR_VARIABLE OUT
)
message("CMAKE Ran with the following output:\n\"${OUT}\"")
# generate lib2
2013-03-16 19:13:01 +02:00
execute_process(
2015-04-27 22:25:09 +02:00
COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}"
-A "${CMAKE_GENERATOR_PLATFORM}"
-T "${CMAKE_GENERATOR_TOOLSET}" "${VSExternalInclude_SOURCE_DIR}/Lib2"
2013-03-16 19:13:01 +02:00
WORKING_DIRECTORY ${LIB2_BINARY_DIR}
OUTPUT_VARIABLE OUT
ERROR_VARIABLE OUT
)
message("CMAKE Ran with the following output:\n\"${OUT}\"")
2013-03-16 19:13:01 +02:00
include_external_msproject(lib1 ${VSExternalInclude_BINARY_DIR}/Lib1/LIB1.${PROJECT_EXT})
# lib2 depends on lib1
2013-03-16 19:13:01 +02:00
include_external_msproject(lib2 ${VSExternalInclude_BINARY_DIR}/Lib2/LIB2.${PROJECT_EXT} lib1)
2013-03-16 19:13:01 +02:00
include_directories(${VSExternalInclude_SOURCE_DIR}/Lib2 ${VSExternalInclude_SOURCE_DIR}/Lib1)
2013-03-16 19:13:01 +02:00
set(SOURCES main.cpp)
2013-03-16 19:13:01 +02:00
add_executable(VSExternalInclude ${SOURCES})
# target depends on lib2
2013-03-16 19:13:01 +02:00
add_dependencies(VSExternalInclude lib2)
2009-10-04 10:30:41 +03:00
# VS 10 vcxproj files have depends in them
# Since lib1 and lib2 do not depend on each other
# then the vcxproj files do not depend on each other
# and the sln file can no longer be the only source
# of that depend. So, for VS 10 make the executable
# depend on lib1 and lib2
2016-10-30 18:24:19 +01:00
if(${CMAKE_GENERATOR} MATCHES "Visual Studio 1[01245]")
2013-03-16 19:13:01 +02:00
add_dependencies(VSExternalInclude lib1)
endif()
2009-10-04 10:30:41 +03:00
2011-01-16 11:35:12 +01:00
# Interaction testing between the FOLDER target property and
# INCLUDE_EXTERNAL_MSPROJECT targets:
set_target_properties(VSExternalInclude PROPERTIES FOLDER folder1/folder2)
set_target_properties(lib1 PROPERTIES FOLDER folder1/folder2)
set_target_properties(lib2 PROPERTIES FOLDER folder1/folder2)
add_custom_target(EmptyCustomTarget)
set_target_properties(EmptyCustomTarget PROPERTIES FOLDER folder1/folder2)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)