2015-06-05 22:03:26 +03:00
|
|
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
|
|
|
|
2015-07-30 00:32:13 +03:00
|
|
|
project(${RunCMake_TEST} CXX)
|
2015-06-05 22:03:26 +03:00
|
|
|
include(${RunCMake_TEST}.cmake)
|
|
|
|
|
|
|
|
# include test generator specifics
|
|
|
|
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${GENERATOR_TYPE}/${RunCMake_TEST}-specifics.cmake")
|
|
|
|
include("${GENERATOR_TYPE}/${RunCMake_TEST}-specifics.cmake")
|
|
|
|
endif()
|
|
|
|
|
2015-09-22 18:38:31 +03:00
|
|
|
set(CPACK_GENERATOR "${GENERATOR_TYPE}")
|
2015-06-05 22:03:26 +03:00
|
|
|
include(CPack)
|