Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « OCUtil « windows « shell_integration - github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe00b31a61b3c61b99323b859871a34187664b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
add_library(OCUtil SHARED
    CommunicationSocket.cpp
    FileUtil.cpp
    RegistryUtil.cpp
    RemotePathChecker.cpp
    stdafx.cpp
    StringUtil.cpp
    OCUtil.rc
)

target_include_directories(OCUtil
    PUBLIC
        "${CMAKE_CURRENT_SOURCE_DIR}"
)

install(TARGETS OCUtil
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)