diff options
author | Brad King <brad.king@kitware.com> | 2011-01-03 15:02:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-01-03 15:02:16 (GMT) |
commit | b29eadd8f38fcfd7b0635501f5e1429e7cb69865 (patch) | |
tree | 0c40f3a44304954cfe2a7f5d07fb3b0e09af86ef /Tests/ForceInclude | |
parent | edff9207ed82d241077d66b20087657f74e8b5b9 (diff) | |
download | CMake-b29eadd8f38fcfd7b0635501f5e1429e7cb69865.zip CMake-b29eadd8f38fcfd7b0635501f5e1429e7cb69865.tar.gz CMake-b29eadd8f38fcfd7b0635501f5e1429e7cb69865.tar.bz2 |
Map multiple /FI flags for VS < 10 (#11649)
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.
Diffstat (limited to 'Tests/ForceInclude')
-rw-r--r-- | Tests/ForceInclude/CMakeLists.txt | 10 | ||||
-rw-r--r-- | Tests/ForceInclude/foo.c | 7 | ||||
-rw-r--r-- | Tests/ForceInclude/foo1.h | 1 | ||||
-rw-r--r-- | Tests/ForceInclude/foo2.h | 1 |
4 files changed, 19 insertions, 0 deletions
diff --git a/Tests/ForceInclude/CMakeLists.txt b/Tests/ForceInclude/CMakeLists.txt new file mode 100644 index 0000000..5c02ebb --- /dev/null +++ b/Tests/ForceInclude/CMakeLists.txt @@ -0,0 +1,10 @@ +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") diff --git a/Tests/ForceInclude/foo.c b/Tests/ForceInclude/foo.c new file mode 100644 index 0000000..af898f4 --- /dev/null +++ b/Tests/ForceInclude/foo.c @@ -0,0 +1,7 @@ +#ifndef FOO_1 +# error "foo1.h not included by /FI" +#endif +#ifndef FOO_2 +# error "foo2.h not included by /FI" +#endif +int main(void) { return 0; } diff --git a/Tests/ForceInclude/foo1.h b/Tests/ForceInclude/foo1.h new file mode 100644 index 0000000..2c1cb7b --- /dev/null +++ b/Tests/ForceInclude/foo1.h @@ -0,0 +1 @@ +#define FOO_1 diff --git a/Tests/ForceInclude/foo2.h b/Tests/ForceInclude/foo2.h new file mode 100644 index 0000000..e47524d --- /dev/null +++ b/Tests/ForceInclude/foo2.h @@ -0,0 +1 @@ +#define FOO_2 |