Skip to content

Commit 1661775

Browse files
committed
Disable development suffix for deployed binaries
1 parent d4475e8 commit 1661775

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/create-dmg.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ MACOSX_DEPLOYMENT_TARGET=10.9
88
cmake \
99
-DCMAKE_OSX_SYSROOT=/Users/tom94/Projects/MacOSX-SDKs/MacOSX10.9.sdk/ \
1010
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \
11+
-DTEV_DEPLOY=1 \
1112
../..
1213
make -j
1314
cd ..

scripts/create-exe.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ call %DevCmd%
1313
echo Building 64-bit tev...
1414
mkdir %BuildDir64%
1515
cd %BuildDir64%
16-
cmake -G "Visual Studio 15 2017 Win64" ..\..
16+
cmake -DTEV_DEPLOY=1 -G "Visual Studio 15 2017 Win64" ..\..
1717
msbuild %MSBuildOptions% tev.sln
1818
move "Release\tev.exe" "..\..\tev.exe"
1919
cd ..
@@ -22,7 +22,7 @@ rmdir /S /Q %BuildDir64%
2222
echo Building 32-bit tev...
2323
mkdir %BuildDir32%
2424
cd %BuildDir32%
25-
cmake -G "Visual Studio 15 2017" ..\..
25+
cmake -DTEV_DEPLOY=1 -G "Visual Studio 15 2017" ..\..
2626
msbuild %MSBuildOptions% tev.sln
2727
move "Release\tev.exe" "..\..\tev-32bit.exe"
2828
cd ..

0 commit comments

Comments
 (0)