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.
15 lines
333 B
CMake
15 lines
333 B
CMake
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/kernel/include
|
|
${CMAKE_BINARY_DIR}
|
|
)
|
|
|
|
|
|
##### executable
|
|
|
|
file( GLOB _bin_c_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*.c )
|
|
tde_add_executable( ksquirrel-libs-ljpeg2ppm
|
|
SOURCES ${_bin_c_files}
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|