Merge topic 'icase-source-file-prop'

b7d760ae test: test source file properties with case-insensitivity
This commit is contained in:
Brad King 2014-12-03 10:02:05 -05:00 committed by CMake Topic Stage
commit d91feda413
4 changed files with 40 additions and 0 deletions

View File

@ -291,6 +291,7 @@ if(BUILD_TESTING)
ADD_TEST_MACRO(ConfigSources ConfigSources) ADD_TEST_MACRO(ConfigSources ConfigSources)
endif() endif()
ADD_TEST_MACRO(SourcesProperty SourcesProperty) ADD_TEST_MACRO(SourcesProperty SourcesProperty)
ADD_TEST_MACRO(SourceFileProperty SourceFileProperty)
if(CMAKE_CXX_COMPILER_ID STREQUAL GNU if(CMAKE_CXX_COMPILER_ID STREQUAL GNU
AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7) AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7)
set(runCxxDialectTest 1) set(runCxxDialectTest 1)

View File

@ -0,0 +1,19 @@
cmake_minimum_required(VERSION 3.0)
project(SourceFileProperty C)
set(sources)
if (EXISTS icasetest.c)
# If a file exists by this name, use it.
set_source_files_properties(icasetest.c
PROPERTIES
COMPILE_FLAGS -DNEEDED_TO_WORK)
else ()
# Work on case-sensitive file systems as well.
set_source_files_properties(main.c
PROPERTIES
COMPILE_FLAGS -DNO_NEED_TO_CALL)
endif ()
list(APPEND sources ICaseTest.c)
add_executable(SourceFileProperty main.c ${sources})

View File

@ -0,0 +1,7 @@
#ifdef NEEDED_TO_WORK
int icasetest()
{
return 0;
}
#endif

View File

@ -0,0 +1,13 @@
#ifndef NO_NEED_TO_CALL
extern int icasetest();
#endif
int main(int argc, char** argv)
{
#ifdef NO_NEED_TO_CALL
return 0;
#else
return icasetest();
#endif
}