mirror of
https://gitee.com/apaki/unicstl.git
synced 2025-05-18 03:51:35 +08:00
15 lines
290 B
Plaintext
15 lines
290 B
Plaintext
|
|
# set the name of project
|
|
project(unity)
|
|
|
|
file(GLOB_RECURSE SRCS CONFIGURE_DEPENDS
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/src/*.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/src/*.c"
|
|
)
|
|
|
|
# add library
|
|
add_library(${PROJECT_NAME} STATIC ${SRCS})
|
|
|
|
# install
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION lib)
|