2002-11-12 09:31:05 -05:00
|
|
|
PROJECT(DumpInformation)
|
2002-11-12 14:18:36 -05:00
|
|
|
INCLUDE_DIRECTORIES(${DumpInformation_BINARY_DIR})
|
|
|
|
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-11 18:07:20 -05:00
|
|
|
ADD_EXECUTABLE(DumpInformation DumpInformation.cxx)
|
|
|
|
|
2003-08-06 18:54:13 -04:00
|
|
|
MACRO(FOO args)
|
|
|
|
MESSAGE("Test macro")
|
|
|
|
ENDMACRO(FOO)
|
|
|
|
|
|
|
|
FOO(lala)
|
|
|
|
|
2003-08-03 20: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 11:20:26 -05:00
|
|
|
|
2003-08-06 18: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})
|
|
|
|
|