mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
20 lines
477 B
CMake
20 lines
477 B
CMake
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO(SRCS ${SRCS_G})
|
|
|
|
add_executable(ActiveRecordCompiler ${SRCS})
|
|
set_target_properties(ActiveRecordCompiler
|
|
PROPERTIES
|
|
OUTPUT_NAME arc
|
|
)
|
|
|
|
target_link_libraries(ActiveRecordCompiler PUBLIC Poco::Foundation Poco::Util)
|
|
|
|
install(
|
|
TARGETS ActiveRecordCompiler EXPORT "ActiveRecordCompiler"
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
RUNTIME DESTINATION bin
|
|
INCLUDES DESTINATION include
|
|
)
|