File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
mkdir CMakeFiles;
4
4
cd CMakeFiles;
5
- CC=clang CXX=clang++ cmake -DTARGET_PLATFORM:STRING=linux -DCMAKE_BUILD_TYPE=Debug ../../../../test;
5
+ CC=clang CXX=clang++ cmake -DTARGET_PLATFORM:STRING=linux -DCMAKE_BUILD_TYPE=RelWithDebInfo ../../../../test;
6
6
make;
7
7
./BqLogUnitTest
8
8
exit_code=$?
Original file line number Diff line number Diff line change 2
2
3
3
mkdir CMakeFiles;
4
4
cd CMakeFiles;
5
- CC=gcc CXX=g++ cmake -DTARGET_PLATFORM:STRING=linux -DCMAKE_BUILD_TYPE=Debug ../../../../test;
5
+ CC=gcc CXX=g++ cmake -DTARGET_PLATFORM:STRING=linux -DCMAKE_BUILD_TYPE=RelWithDebInfo ../../../../test;
6
6
make;
7
7
./BqLogUnitTest
8
8
exit_code=$?
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ mkdir XCodeProj
4
4
cd XCodeProj
5
5
6
6
cmake ../../../../test -DTARGET_PLATFORM:STRING=mac -G " Xcode"
7
- xcodebuild -project BqLogUnitTest.xcodeproj -scheme BqLogUnitTest -configuration Debug
8
- ./Debug /BqLogUnitTest
7
+ xcodebuild -project BqLogUnitTest.xcodeproj -scheme BqLogUnitTest -configuration RelWithDebInfo
8
+ ./RelWithDebInfo /BqLogUnitTest
9
9
exit_code=$?
10
10
cd ..;
11
11
if [ $exit_code -eq 0 ]; then
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ cd VSProj
14
14
cmake ..\..\..\..\test -DTARGET_PLATFORM:STRING=win64 -DCMAKE_GENERATOR_PLATFORM=x64 -DJAVA_SUPPORT=ON -T ClangCl
15
15
16
16
echo " %VS_PATH% \devenv.com"
17
- call " %VS_PATH% \devenv.com" ./BqLogUnitTest.sln /Rebuild " Debug " /Project " ./BqLogUnitTest.vcxproj" /Out Build.log
17
+ call " %VS_PATH% \devenv.com" ./BqLogUnitTest.sln /Rebuild " RelWithDebInfo " /Project " ./BqLogUnitTest.vcxproj" /Out Build.log
18
18
19
- .\Debug \BqLogUnitTest.exe
19
+ .\RelWithDebInfo \BqLogUnitTest.exe
20
20
set exitcode = %ERRORLEVEL%
21
21
cd ..
22
22
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ cd VSProj
14
14
cmake ..\..\..\..\test -DTARGET_PLATFORM:STRING=win64 -DCMAKE_GENERATOR_PLATFORM=x64 -DJAVA_SUPPORT=ON
15
15
16
16
echo " %VS_PATH% \devenv.com"
17
- call " %VS_PATH% \devenv.com" ./BqLogUnitTest.sln /Rebuild " Debug " /Project " ./BqLogUnitTest.vcxproj" /Out Build.log
17
+ call " %VS_PATH% \devenv.com" ./BqLogUnitTest.sln /Rebuild " RelWithDebInfo " /Project " ./BqLogUnitTest.vcxproj" /Out Build.log
18
18
19
- .\Debug \BqLogUnitTest.exe
19
+ .\RelWithDebInfo \BqLogUnitTest.exe
20
20
set exitcode = %ERRORLEVEL%
21
21
cd ..
22
22
You can’t perform that action at this time.
0 commit comments