mirror of
https://github.com/OpenCMT/uLib.git
synced 2025-12-06 15:31:31 +01:00
15 lines
243 B
CMake
15 lines
243 B
CMake
|
|
set( Kit_SRCS
|
|
ManageFilename.cpp
|
|
Test.cpp
|
|
)
|
|
|
|
|
|
add_library(ManageFilename SHARED ${Kit_SRCS})
|
|
|
|
install(TARGETS ManageFilename
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib/static)
|
|
|