poco/ActiveRecord/Compiler/CMakeLists.txt

27 lines
741 B
CMake
Raw Normal View History

# Sources
file(GLOB SRCS_G "src/*.cpp")
POCO_SOURCES_AUTO(SRCS ${SRCS_G})
2021-06-26 10:12:20 +02:00
# Version Resource
if(MSVC)
source_group("Resources" FILES ${PROJECT_SOURCE_DIR}/DLLVersion.rc)
list(APPEND SRCS ${PROJECT_SOURCE_DIR}/DLLVersion.rc)
endif()
add_executable(ActiveRecordCompiler ${SRCS})
set_target_properties(ActiveRecordCompiler
PROPERTIES
2023-06-08 15:56:18 +02:00
OUTPUT_NAME poco-arc
)
target_link_libraries(ActiveRecordCompiler PUBLIC Poco::Foundation Poco::Util)
install(
TARGETS ActiveRecordCompiler EXPORT "ActiveRecordCompiler"
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR}
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)