mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
34e9e2f288
Signed-off-by: Michael Schuster <michael@schuster.ms>
17 lines
381 B
CMake
17 lines
381 B
CMake
add_library(OCContextMenu MODULE
|
|
dllmain.cpp
|
|
OCClientInterface.cpp
|
|
OCContextMenu.cpp
|
|
OCContextMenuFactory.cpp
|
|
OCContextMenuRegHandler.cpp
|
|
OCContextMenu.rc
|
|
OCContextMenu.def
|
|
)
|
|
|
|
target_link_libraries(OCContextMenu
|
|
OCUtil)
|
|
|
|
install(TARGETS OCContextMenu
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|