From 43b9eb5bac15666fdc0346aca7031fab0fa5e064 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 23 Oct 2017 03:29:10 +0200 Subject: CMake: methods: Cleanup link libraries, use OBJECT libraries Use OBJECT libraries for http and connect stuff, and move the seccomp link expression into a global link_libraries() call. This also fixes a bug where only the http target pulled in the gnutls header arguments despite gnutls being used in connect.cc, and thus by mirror and ftp as well. Adjust translation support to ignore TARGET_OBJECTS sources and add the OBJECT libraries to the translated files. --- methods/CMakeLists.txt | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) (limited to 'methods') diff --git a/methods/CMakeLists.txt b/methods/CMakeLists.txt index 60c636c7b..4a5047efe 100644 --- a/methods/CMakeLists.txt +++ b/methods/CMakeLists.txt @@ -1,31 +1,28 @@ # Create the executable targets include_directories($<$:${SECCOMP_INCLUDE_DIR}>) +link_libraries(apt-pkg $<$:${SECCOMP_LIBRARIES}>) + +add_library(httplib OBJECT http.cc basehttp.cc) +add_library(connectlib OBJECT connect.cc rfc2553emu.cc) add_executable(file file.cc) add_executable(copy copy.cc) add_executable(store store.cc) add_executable(gpgv gpgv.cc) add_executable(cdrom cdrom.cc) -add_executable(http http.cc http_main.cc rfc2553emu.cc connect.cc basehttp.cc) -add_executable(mirror mirror.cc http.cc rfc2553emu.cc connect.cc basehttp.cc) -add_executable(ftp ftp.cc rfc2553emu.cc connect.cc) +add_executable(http http_main.cc $ $) +add_executable(mirror mirror.cc $ $) +add_executable(ftp ftp.cc $) add_executable(rred rred.cc) add_executable(rsh rsh.cc) -target_compile_definitions(http PRIVATE ${GNUTLS_DEFINITIONS}) -target_include_directories(http PRIVATE ${GNUTLS_INCLUDE_DIR}) - -# Link the executables against the libraries -target_link_libraries(file apt-pkg $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(copy apt-pkg $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(store apt-pkg $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(gpgv apt-pkg $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(cdrom apt-pkg $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(http apt-pkg ${GNUTLS_LIBRARIES} $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(mirror apt-pkg ${RESOLV_LIBRARIES} ${GNUTLS_LIBRARIES} $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(ftp apt-pkg ${GNUTLS_LIBRARIES} $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(rred apt-pkg $<$:${SECCOMP_LIBRARIES}>) -target_link_libraries(rsh apt-pkg $<$:${SECCOMP_LIBRARIES}>) +target_compile_definitions(connectlib PRIVATE ${GNUTLS_DEFINITIONS}) +target_include_directories(connectlib PRIVATE ${GNUTLS_INCLUDE_DIR}) + +# Additional libraries to link against for networked stuff +target_link_libraries(http ${GNUTLS_LIBRARIES}) +target_link_libraries(mirror ${RESOLV_LIBRARIES} ${GNUTLS_LIBRARIES}) +target_link_libraries(ftp ${GNUTLS_LIBRARIES}) # Install the library install(TARGETS file copy store gpgv cdrom http ftp rred rsh mirror -- cgit v1.2.3