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: eabb4c4a58fb2b6e1cd817c34ed6a055c5e45bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_library(OCUtil STATIC
    CommunicationSocket.cpp
    FileUtil.cpp
    RegistryUtil.cpp
    RemotePathChecker.cpp
    stdafx.cpp
    StringUtil.cpp
    OCUtil.rc
)

target_compile_options(OCUtil
    PUBLIC
        "/MT$<$<CONFIG:Debug>:d>"
)

target_include_directories(OCUtil
    PUBLIC
        "${CMAKE_CURRENT_SOURCE_DIR}"
)