forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abeec90
commit 9702cb0
Showing
6 changed files
with
23 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ endif() | |
if(WIN32) | ||
add_subdirectory(windows) | ||
endif() | ||
if(APPLE) | ||
add_subdirectory(macos) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
project(icons VERSION 1.0 LANGUAGES C CXX) | ||
|
||
#set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
include(../../variables.cmake) | ||
|
||
# install macOS files for a correct bundle | ||
install(FILES qt.conf DESTINATION ${INSTALLROOT}/${DATADIR}) | ||
install(FILES ../../resources/icons/qlcplus.icns DESTINATION ${INSTALLROOT}) | ||
|
||
if(qmlui) | ||
install(FILES Info.plist.qmlui DESTINATION ${INSTALLROOT}/Info.plist) | ||
else() | ||
install(FILES Info.plist DESTINATION ${INSTALLROOT}) | ||
endif() | ||
install(CODE "execute_process(COMMAND sed -i -e \"s/__QLC_VERSION__/${APPVERSION}/g\" ${INSTALLROOT}/Info.plist)") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters