mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 17:11:04 +00:00
2066511ca9
The variables stored in the AutomocInfo.cmake file were not properly escaped, so when reading them back they could turn into lists, if they contained double quotes initially. This patch fixes this by using cmLocalGenerator::EscapeForCMake() to escape the variables properly. Alex
17 lines
766 B
CMake
17 lines
766 B
CMake
set(AM_SOURCES @_moc_files@ )
|
|
set(AM_HEADERS @_moc_headers@ )
|
|
set(AM_MOC_COMPILE_DEFINITIONS @_moc_compile_defs@)
|
|
set(AM_MOC_DEFINITIONS @_moc_defs@)
|
|
set(AM_MOC_INCLUDES @_moc_incs@)
|
|
set(AM_MOC_OPTIONS @_moc_options@)
|
|
set(AM_CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE "@CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE@")
|
|
set(AM_CMAKE_BINARY_DIR "@CMAKE_BINARY_DIR@/")
|
|
set(AM_CMAKE_SOURCE_DIR "@CMAKE_SOURCE_DIR@/")
|
|
set(AM_QT_MOC_EXECUTABLE "@QT_MOC_EXECUTABLE@")
|
|
set(AM_CMAKE_CURRENT_SOURCE_DIR "@CMAKE_CURRENT_SOURCE_DIR@/")
|
|
set(AM_CMAKE_CURRENT_BINARY_DIR "@CMAKE_CURRENT_BINARY_DIR@/")
|
|
set(AM_QT_VERSION_MAJOR "@QT_VERSION_MAJOR@" )
|
|
set(AM_Qt5Core_VERSION_MAJOR "@Qt5Core_VERSION_MAJOR@" )
|
|
set(AM_TARGET_NAME @_moc_target_name@)
|
|
set(AM_RELAXED_MODE "@_moc_relaxed_mode@")
|