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
338 B
CMake
17 lines
338 B
CMake
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
##### libpsp (static)
|
|
|
|
add_custom_command(
|
|
OUTPUT psp_data.cpp
|
|
COMMAND xml_psp_parser ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
tde_add_library( psp STATIC_PIC AUTOMOC
|
|
SOURCES
|
|
psp.cpp psp_prog.cpp psp_serial.cpp ${CMAKE_CURRENT_BINARY_DIR}/psp_data.cpp
|
|
)
|