mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
17 lines
314 B
CMake
17 lines
314 B
CMake
add_library(OCUtil SHARED
|
|
CommunicationSocket.cpp
|
|
FileUtil.cpp
|
|
RegistryUtil.cpp
|
|
RemotePathChecker.cpp
|
|
stdafx.cpp
|
|
StringUtil.cpp
|
|
)
|
|
|
|
target_include_directories(OCUtil
|
|
PUBLIC
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"
|
|
)
|
|
|
|
install(TARGETS OCUtil
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|