mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 02:28:25 +00:00
b29eadd8f3
The /FI flag may be repeated so the flag table entry needs to be marked with SemicolonAppendable. This was already the case for VS 10.
11 lines
365 B
CMake
11 lines
365 B
CMake
cmake_minimum_required(VERSION 2.8.3.20110103)
|
|
project(ForceInclude C)
|
|
|
|
# Make sure the proper compiler is in use.
|
|
if(NOT MSVC AND NOT "${CMAKE_C_COMPILER_ID}" MATCHES "^(Intel)$")
|
|
message(FATAL_ERROR "The ForceInclude test works only with MSVC or Intel")
|
|
endif()
|
|
|
|
add_executable(foo foo.c)
|
|
set_property(SOURCE foo.c PROPERTY COMPILE_FLAGS "/FIfoo1.h /FIfoo2.h")
|