mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-08 11:02:17 +01:00
20 lines
413 B
CMake
20 lines
413 B
CMake
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO(SRCS ${SRCS_G})
|
|
|
|
add_executable(File2Page ${SRCS})
|
|
set_target_properties(File2Page
|
|
PROPERTIES
|
|
OUTPUT_NAME f2cpsp
|
|
)
|
|
|
|
target_link_libraries(File2Page PUBLIC Poco::Util)
|
|
|
|
install(
|
|
TARGETS File2Page EXPORT File2PageTargets
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
RUNTIME DESTINATION bin
|
|
INCLUDES DESTINATION include
|
|
)
|