mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
17 lines
351 B
CMake
17 lines
351 B
CMake
add_library(OCOverlays MODULE
|
|
DllMain.cpp
|
|
OCOverlay.cpp
|
|
OCOverlayFactory.cpp
|
|
OCOverlayRegistrationHandler.cpp
|
|
stdafx.cpp
|
|
OCOverlay.rc
|
|
OCOverlays.def
|
|
)
|
|
|
|
target_link_libraries(OCOverlays
|
|
OCUtil)
|
|
|
|
install(TARGETS OCOverlays
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|