mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 14:05:58 +03:00
0d9ae241c9
Project file names stay the same, only the output file(s) changed
11 lines
513 B
CMake
11 lines
513 B
CMake
|
|
if(APPLE)
|
|
add_custom_target( mac_overlayplugin ALL
|
|
xcodebuild -workspace ${CMAKE_SOURCE_DIR}/shell_integration/MacOSX/OwnCloud.xcworkspace
|
|
-scheme SyncStateFinder.osax SYMROOT=${CMAKE_CURRENT_BINARY_DIR} archive
|
|
COMMENT building Mac Overlay icons)
|
|
|
|
INSTALL( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Release/SyncStateFinder.osax/Contents
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/Library/ScriptingAdditions/SyncStateFinder.osax/ )
|
|
endif(APPLE)
|
|
|