mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
44 lines
741 B
CMake
44 lines
741 B
CMake
project(client)
|
|
|
|
set(CLIENT_PUBLIC_INCLUDE_DIRS
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}
|
|
CACHE INTERNAL "csync client public include directories"
|
|
)
|
|
|
|
set(CLIENT_PRIVATE_INCLUDE_DIRS
|
|
${CMAKE_BINARY_DIR}
|
|
${CSYNC_PUBLIC_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(CLIENT_EXECUTABLE
|
|
csync_client
|
|
CACHE INTERNAL "csync client"
|
|
)
|
|
|
|
set(CLIENT_LINK_LIBRARIES
|
|
${CLIENT_EXECUTABLE}
|
|
${CSYNC_LIBRARY}
|
|
)
|
|
|
|
set(client_SRCS
|
|
csync_client.c
|
|
)
|
|
|
|
include_directories(
|
|
${CLIENT_PUBLIC_INCLUDE_DIRS}
|
|
${CLIENT_PRIVATE_INCLUDE_DIRS}
|
|
${CSYNC_PUBLIC_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_executable(${CLIENT_EXECUTABLE} ${client_SRCS})
|
|
|
|
target_link_libraries(${CLIENT_LINK_LIBRARIES})
|
|
|
|
set_target_properties(
|
|
${CLIENT_EXECUTABLE}
|
|
PROPERTIES
|
|
OUTPUT_NAME
|
|
csync
|
|
)
|
|
|