mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
7f6c2f946b
Signed-off-by: alex-z <blackslayer4@gmail.com>
24 lines
525 B
CMake
24 lines
525 B
CMake
add_library(NCOverlays MODULE
|
|
DllMain.cpp
|
|
NCOverlay.cpp
|
|
NCOverlayFactory.cpp
|
|
NCOverlayRegistrationHandler.cpp
|
|
NCOverlay.rc
|
|
NCOverlays.def
|
|
)
|
|
|
|
target_link_libraries(NCOverlays
|
|
NCUtil)
|
|
|
|
set_target_properties(NCOverlays
|
|
PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY
|
|
${BIN_OUTPUT_DIRECTORY}
|
|
RUNTIME_OUTPUT_DIRECTORY
|
|
${BIN_OUTPUT_DIRECTORY}
|
|
)
|
|
|
|
install(TARGETS NCOverlays
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|