mirror of
https://gitee.com/apaki/unicstl.git
synced 2025-05-18 03:51:35 +08:00
17 lines
278 B
Plaintext
17 lines
278 B
Plaintext
|
|
project(test)
|
|
|
|
# include
|
|
include_directories(.)
|
|
# add src
|
|
aux_source_directory(. DIR_TEST)
|
|
|
|
# generate target
|
|
add_executable(${PROJECT_NAME} ${DIR_TEST})
|
|
|
|
# link libary
|
|
target_link_libraries(${PROJECT_NAME} unicstl)
|
|
|
|
# install
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION bin)
|