mirror of
https://github.com/fumiama/base16384-sycl.git
synced 2026-06-27 08:10:27 +08:00
optimize: project structure
This commit is contained in:
17
libs/CMakeLists.txt
Normal file
17
libs/CMakeLists.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
file(GLOB CPP_FILES "*.cpp")
|
||||
|
||||
set(LOCAL_B14LIBS "")
|
||||
|
||||
foreach(CPP_FILE ${CPP_FILES})
|
||||
# name without .cpp
|
||||
get_filename_component(TARGET_NAME ${CPP_FILE} NAME_WE)
|
||||
message(STATUS "Add lib: ${TARGET_NAME}")
|
||||
add_library(${TARGET_NAME} STATIC ${CPP_FILE})
|
||||
|
||||
set_target_properties(${TARGET_NAME} PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS}")
|
||||
set_target_properties(${TARGET_NAME} PROPERTIES LINK_FLAGS "${LINK_FLAGS}")
|
||||
|
||||
list(APPEND LOCAL_B14LIBS ${TARGET_NAME})
|
||||
endforeach()
|
||||
|
||||
set(B14LIBS ${LOCAL_B14LIBS} PARENT_SCOPE)
|
||||
Reference in New Issue
Block a user