mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
36 lines
750 B
CMake
36 lines
750 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:include>
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
)
|
|
|
|
if(NOT BUILD_SHARED_LIBS)
|
|
target_compile_definitions(CppUnit
|
|
PUBLIC
|
|
POCO_STATIC
|
|
)
|
|
elseif(MINGW)
|
|
target_compile_definitions(CppUnit
|
|
PUBLIC
|
|
_DLL)
|
|
endif()
|