diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-07-30 15:37:50 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:22:05 +0100 |
commit | 73bf608efc913589992903ebdbab1da5c115b49d (patch) | |
tree | 8de0aa35aa82b40883c8d7f72aee21b612b3d31e /src/Main/Main.make | |
parent | 6688c9d85a0a5aecca0b2de77fcf5ff7cf83dfba (diff) | |
download | VeraCrypt-73bf608efc913589992903ebdbab1da5c115b49d.tar.gz VeraCrypt-73bf608efc913589992903ebdbab1da5c115b49d.zip |
MacOSX : Correct issue of compiling assembly files in both 32-bit and 64-bit mode. Modify Makefiles to correct compilation process using latest Xcode.
Diffstat (limited to 'src/Main/Main.make')
-rw-r--r-- | src/Main/Main.make | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make index 5cd39d10..04d1ef59 100644 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -152,6 +152,9 @@ endif echo -n APPLTRUE >$(APPNAME).app/Contents/PkgInfo sed -e 's/_VERSION_/$(patsubst %a,%.1,$(patsubst %b,%.2,$(TC_VERSION)))/' ../Build/Resources/MacOSX/Info.plist.xml >$(APPNAME).app/Contents/Info.plist + codesign -s "Developer ID Application: Mounir IDRASSI" $(APPNAME).app + rm -f $(APPNAME).dmg + hdiutil create -srcfolder $(APPNAME).app -volname "VeraCrypt $(TC_VERSION) for Mac OS X $(VC_OSX_TARGET) and later" $(APPNAME)_$(TC_VERSION).dmg endif ifeq "$(PLATFORM)" "Linux" |