-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMake: Generate an installer for the framework on OSX
Signed-off-by: Paul Cercueil <[email protected]>
- Loading branch information
Paul Cercueil
committed
Jun 9, 2015
1 parent
3fb11de
commit d46fc8f
Showing
2 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
<installer-gui-script minSpecVersion="1" > | ||
<title>Libiio</title> | ||
<options customize="never" rootVolumeOnly="true" /> | ||
<allowed-os-versions> | ||
<os-version min="10.6.6" /> | ||
</allowed-os-versions> | ||
<license file="@CMAKE_CURRENT_SOURCE_DIR@/COPYING.txt" mime-type="text/plain" /> | ||
<product id="libiio" version="@VERSION@" /> | ||
<choices-outline> | ||
<line choice="default" > | ||
<line choice="libiio" /> | ||
</line> | ||
</choices-outline> | ||
<choice id="default" /> | ||
<choice id="libiio" visible="false" > | ||
<pkg-ref id="libiio" /> | ||
</choice> | ||
<pkg-ref id="libiio" version="@VERSION@" onConclusion="none" >@LIBIIO_TEMP_PKG@</pkg-ref> | ||
</installer-gui-script> |