1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-06 07:44:57 +03:00

src: split CMakeLists.txt for each subdirectory

This commit is contained in:
Davide Beatrici
2018-07-26 06:44:19 +02:00
parent 65bda6a44d
commit 07ed7e1626
8 changed files with 129 additions and 118 deletions

View File

@ -0,0 +1,10 @@
add_executable(vpnclient vpncsvc.c)
set_target_properties(vpnclient
PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/tmp/vpnclient"
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/vpnclient"
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/vpnclient"
)
target_link_libraries(vpnclient cedar mayaqua)