You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
351 B
CMake
17 lines
351 B
CMake
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
##### libpickit1 (static)
|
|
|
|
add_custom_command(
|
|
OUTPUT pickit1_data.cpp
|
|
COMMAND xml_pickit1_parser ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
tde_add_library( pickit1 STATIC_PIC AUTOMOC
|
|
SOURCES
|
|
pickit1.cpp pickit1_prog.cpp ${CMAKE_CURRENT_BINARY_DIR}/pickit1_data.cpp
|
|
)
|