2002-11-12 17:31:05 +03:00
|
|
|
PROJECT(DumpInformation)
|
2004-04-26 21:42:08 +04:00
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES("This does not exists")
|
|
|
|
GET_DIRECTORY_PROPERTY(incl INCLUDE_DIRECTORIES)
|
|
|
|
SET_DIRECTORY_PROPERTIES(PROPERTIES INCLUDE_DIRECTORIES "${DumpInformation_BINARY_DIR};${DumpInformation_SOURCE_DIR}")
|
|
|
|
|
2005-02-08 18:13:30 +03:00
|
|
|
MESSAGE("To prevent CTest from stripping output, you have to display: CTEST_FULL_OUTPUT")
|
|
|
|
|
2004-04-26 21:42:08 +04:00
|
|
|
|
2002-11-12 22:18:36 +03:00
|
|
|
CONFIGURE_FILE(${DumpInformation_SOURCE_DIR}/SystemInformation.in
|
|
|
|
${DumpInformation_BINARY_DIR}/SystemInformation.out)
|
|
|
|
CONFIGURE_FILE(${DumpInformation_SOURCE_DIR}/DumpInformation.h.in
|
|
|
|
${DumpInformation_BINARY_DIR}/DumpInformation.h)
|
2002-11-12 02:07:20 +03:00
|
|
|
ADD_EXECUTABLE(DumpInformation DumpInformation.cxx)
|
|
|
|
|
2003-08-07 02:54:13 +04:00
|
|
|
MACRO(FOO args)
|
|
|
|
MESSAGE("Test macro")
|
|
|
|
ENDMACRO(FOO)
|
|
|
|
|
|
|
|
FOO(lala)
|
|
|
|
|
2003-08-04 04:47:44 +04:00
|
|
|
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/AllVariables.txt "")
|
|
|
|
GET_CMAKE_PROPERTY(res VARIABLES)
|
|
|
|
FOREACH(var ${res})
|
|
|
|
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/AllVariables.txt
|
|
|
|
"${var} \"${${var}}\"\n")
|
|
|
|
ENDFOREACH(var ${res})
|
|
|
|
|
|
|
|
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/AllCommands.txt "")
|
|
|
|
GET_CMAKE_PROPERTY(res COMMANDS)
|
|
|
|
FOREACH(var ${res})
|
|
|
|
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/AllCommands.txt
|
|
|
|
"${var}\n")
|
|
|
|
ENDFOREACH(var ${res})
|
2003-03-06 19:20:26 +03:00
|
|
|
|
2003-08-07 02:54:13 +04:00
|
|
|
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/AllMacros.txt "")
|
|
|
|
GET_CMAKE_PROPERTY(res MACROS)
|
|
|
|
FOREACH(var ${res})
|
|
|
|
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/AllMacros.txt
|
|
|
|
"${var}\n")
|
|
|
|
ENDFOREACH(var ${res})
|
|
|
|
|
2004-04-26 21:42:08 +04:00
|
|
|
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/OtherProperties.txt "")
|
|
|
|
GET_DIRECTORY_PROPERTY(res INCLUDE_DIRECTORIES)
|
|
|
|
FOREACH(var ${res})
|
|
|
|
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/OtherProperties.txt
|
|
|
|
"INCLUDE_DIRECTORY: ${var}\n")
|
|
|
|
ENDFOREACH(var)
|
|
|
|
|
|
|
|
GET_DIRECTORY_PROPERTY(res LINK_DIRECTORIES)
|
|
|
|
FOREACH(var ${res})
|
|
|
|
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/OtherProperties.txt
|
|
|
|
"LINK_DIRECTORIES: ${var}\n")
|
|
|
|
ENDFOREACH(var)
|
|
|
|
|
|
|
|
GET_DIRECTORY_PROPERTY(res INCLUDE_REGULAR_EXPRESSION)
|
|
|
|
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/OtherProperties.txt
|
|
|
|
"INCLUDE_REGULAR_EXPRESSION: ${res}\n")
|
|
|
|
|
|
|
|
|