mirror of
https://gitee.com/apaki/unicstl.git
synced 2025-07-03 23:56:54 +08:00
13 lines
208 B
Plaintext
13 lines
208 B
Plaintext
|
|
# set the name of project
|
|
project(unicstl)
|
|
|
|
# add src
|
|
aux_source_directory(. SRCS)
|
|
|
|
# generate library
|
|
add_library(${PROJECT_NAME} STATIC ${SRCS})
|
|
|
|
# install
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION lib)
|