poco/PDF/CMakeLists.txt

32 lines
643 B
CMake
Raw Normal View History

2012-11-11 11:28:44 +01:00
set(LIBNAME "PocoPDF")
aux_source_directory(src SRCS)
2012-06-26 14:37:02 +02:00
include_directories(include/Poco/PDF) # zip src
2012-11-11 11:28:44 +01:00
if (NOT POCO_STATIC)
add_definitions(-DPDF_EXPORTS)
2012-11-11 11:28:44 +01:00
endif (NOT POCO_STATIC)
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
set_target_properties( ${LIBNAME}
PROPERTIES
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
target_link_libraries( ${LIBNAME} PocoFoundation)
2012-11-11 11:28:44 +01:00
install(
DIRECTORY include/Poco
DESTINATION include
PATTERN ".svn" EXCLUDE
)
install(
TARGETS ${LIBNAME}
DESTINATION lib
)
if (ENABLE_TESTS)
add_subdirectory(samples)
add_subdirectory(testsuite)
endif ()