mirror of https://github.com/BOINC/boinc.git
Mac: When invoked with the -lib argument, BOINC build script builds the utility application MakeAppIcon_h in addition to the three libraries
svn path=/trunk/boinc/; revision=14963
This commit is contained in:
parent
76178d3b03
commit
a766db8c51
|
@ -2610,3 +2610,11 @@ Charlie Mar 21 2008
|
||||||
clientgui/
|
clientgui/
|
||||||
mac/
|
mac/
|
||||||
SetupSecurity.cpp
|
SetupSecurity.cpp
|
||||||
|
|
||||||
|
Charlie Mar 27 2008
|
||||||
|
- Mac: When invoked with the -lib argument, BOINC build script builds the
|
||||||
|
utility application MakeAppIcon_h in addition to the three libraries
|
||||||
|
libboinc_api.a, libboinc_graphics2.a and libboinc.a.
|
||||||
|
|
||||||
|
mac_build/
|
||||||
|
BuildMacBOINC.sh
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#
|
#
|
||||||
##
|
##
|
||||||
# Script for building Macintosh BOINC Manager, Core Client and libraries
|
# Script for building Macintosh BOINC Manager, Core Client and libraries
|
||||||
# by Charlie Fenton 1/10/08
|
# by Charlie Fenton 3/27/08
|
||||||
# with thanks to Reinhard Prix for his assistance
|
# with thanks to Reinhard Prix for his assistance
|
||||||
##
|
##
|
||||||
|
|
||||||
|
@ -49,7 +49,8 @@
|
||||||
##
|
##
|
||||||
## -all build all targets (i.e. target "Build_All" -- this is the default)
|
## -all build all targets (i.e. target "Build_All" -- this is the default)
|
||||||
##
|
##
|
||||||
## -lib build the three libraries: libboinc_api.a, libboinc_graphics2.a, libboinc.a
|
## -lib build the three libraries: libboinc_api.a, libboinc_graphics2.a, libboinc.a
|
||||||
|
## and the utility application MakeAppIcon_h.
|
||||||
##
|
##
|
||||||
## -client build two targets: boinc client and command-line utility boinc_cmd
|
## -client build two targets: boinc client and command-line utility boinc_cmd
|
||||||
## (also builds libboinc.a if needed, since boinc_cmd requires it.)
|
## (also builds libboinc.a if needed, since boinc_cmd requires it.)
|
||||||
|
@ -82,7 +83,7 @@ if [ "${doclean}" = "clean" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${buildlibs}" = "1" ]; then
|
if [ "${buildlibs}" = "1" ]; then
|
||||||
targets="$targets -target libboinc -target gfx2libboinc -target api_libboinc"
|
targets="$targets -target libboinc -target gfx2libboinc -target api_libboinc -target MakeAppIcon_h"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${buildclient}" = "1" ]; then
|
if [ "${buildclient}" = "1" ]; then
|
||||||
|
|
Loading…
Reference in New Issue