Skip to content

Commit 0d52789

Browse files
author
Nicola Pezzotti
committed
Build in Release mode
1 parent c0b00cf commit 0d52789

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ On Ubuntu 16.04 you can build and install HDI by running the following commands
4949
apt-get install qtbase5-dev libqt5webkit5-dev libflann-dev
5050
mkdir build
5151
cd build
52-
cmake ../
52+
cmake -DCMAKE_BUILD_TYPE=Release ..
5353
make -j 8
5454
sudo make install
5555
```

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export C_INCLUDE_PATH=/usr/local/include
44
export CPLUS_INCLUDE_PATH=/usr/local/include
55

66
cd build
7-
cmake ../
7+
cmake -DCMAKE_BUILD_TYPE=Release ..
88
make -j 8

scripts/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd CRoaring
66

77
mkdir -p build
88
cd build
9-
cmake ..
9+
cmake -DCMAKE_BUILD_TYPE=Release ..
1010
make
1111
sudo make install
1212

scripts/rebuild-and-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ export CPLUS_INCLUDE_PATH=/usr/local/include
55
rm -drf build
66
mkdir build
77
cd build
8-
cmake ../
8+
cmake -DCMAKE_BUILD_TYPE=Release ..
99
make -j 8
1010
./applications/tdd/tdd

scripts/rebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ export CPLUS_INCLUDE_PATH=/usr/local/include
55
rm -drf build
66
mkdir build
77
cd build
8-
cmake ../
8+
cmake -DCMAKE_BUILD_TYPE=Release ..
99
make -j 8

0 commit comments

Comments
 (0)