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.
13 lines
274 B
13 lines
274 B
1 year ago
|
include_directories(
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
${CMAKE_SOURCE_DIR}/kernel/include
|
||
|
)
|
||
|
|
||
|
|
||
|
##### executable
|
||
|
|
||
|
file( GLOB _bin_c_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*.c )
|
||
|
tde_add_library( jbig STATIC_PIC AUTOMOC
|
||
|
SOURCES ${_bin_c_files}
|
||
|
)
|