You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piklab/src/data/CMakeLists.txt

32 lines
567 B

##### subfolders
add_subdirectory( app_data )
##### syntax_xml_generator (executable)
tde_add_executable( syntax_xml_generator AUTOMOC
SOURCES syntax_xml_generator.cpp
LINK ${TQT_LIBRARIES}
)
add_custom_command(
OUTPUT asm-pic.xml coff-pic.xml
COMMAND syntax_xml_generator
)
add_custom_target(
build_time_xml_files
ALL DEPENDS asm-pic.xml coff-pic.xml
)
install(
FILES
coff-c-pic.xml jal-pic.xml
${CMAKE_CURRENT_BINARY_DIR}/asm-pic.xml
${CMAKE_CURRENT_BINARY_DIR}/coff-pic.xml
DESTINATION
${DATA_INSTALL_DIR}/katepart/syntax
)