123456789101112131415161718192021222324 |
- # Set the version of the library
- set(MAJOR 0.0)
- set(MINOR 0)
- # Definition of the C++ files used to build the library
- file(GLOB_RECURSE library "*.cc")
- file(GLOB_RECURSE headers "*.h")
- # Create a library using the C++ files
- add_library(apt-private SHARED ${library})
- # Link the library and set the SONAME
- target_link_libraries(apt-private PUBLIC apt-pkg)
- set_target_properties(apt-private PROPERTIES VERSION ${MAJOR}.${MINOR})
- set_target_properties(apt-private PROPERTIES SOVERSION ${MAJOR})
- add_version_script(apt-private)
- # Install the library and the headers
- install(TARGETS apt-private
- LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
- NAMELINK_SKIP)
- flatify(${PROJECT_BINARY_DIR}/include/apt-private/ "${headers}")
|