mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
41 lines
910 B
CMake
41 lines
910 B
CMake
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO(SRCS ${SRCS_G})
|
|
|
|
# Headers
|
|
file(GLOB_RECURSE HDRS_G "include/*.h")
|
|
POCO_HEADERS_AUTO(SRCS ${HDRS_G})
|
|
|
|
add_library(CppUnit ${SRCS})
|
|
add_library(Poco::CppUnit ALIAS CppUnit)
|
|
set_target_properties(CppUnit
|
|
PROPERTIES
|
|
VERSION "1" SOVERSION "1"
|
|
OUTPUT_NAME CppUnit
|
|
DEFINE_SYMBOL CppUnit_EXPORTS
|
|
)
|
|
target_link_libraries(CppUnit PUBLIC Poco::Foundation)
|
|
target_include_directories(CppUnit
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
)
|
|
if(WIN32)
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
target_compile_definitions(CppUnit PUBLIC POCO_NO_AUTOMATIC_LIBS)
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT BUILD_SHARED_LIBS)
|
|
target_compile_definitions(CppUnit
|
|
PUBLIC
|
|
POCO_STATIC
|
|
)
|
|
elseif(MINGW)
|
|
target_compile_definitions(CppUnit
|
|
PUBLIC
|
|
_DLL)
|
|
endif()
|