build/mkcmake.sh
author terom
Mon, 08 Dec 2008 12:02:20 +0000
changeset 282 e0e4dfc3e528
parent 281 3f2de9d1d909
child 366 f14a61b2a2d1
permissions -rw-r--r--
compiles cleanly with -Wall -Wextra -Wconversion, not tested, but that shouldn't break anything :)
61
d7999511b103 add a stupid little script to run initial cmake
terom
parents:
diff changeset
     1
#!/bin/sh
d7999511b103 add a stupid little script to run initial cmake
terom
parents:
diff changeset
     2
281
3f2de9d1d909 add -DCMAKE_CXX_FLAGS=-Wall flag to mkcmake.sh
terom
parents: 246
diff changeset
     3
cmake ../                                       \
3f2de9d1d909 add -DCMAKE_CXX_FLAGS=-Wall flag to mkcmake.sh
terom
parents: 246
diff changeset
     4
    -DCMAKE_BUILD_TYPE=Debug                    \
3f2de9d1d909 add -DCMAKE_CXX_FLAGS=-Wall flag to mkcmake.sh
terom
parents: 246
diff changeset
     5
    -DCMAKE_INSTALL_PREFIX=~/opt                \
282
e0e4dfc3e528 compiles cleanly with -Wall -Wextra -Wconversion, not tested, but that shouldn't break anything :)
terom
parents: 281
diff changeset
     6
    -DCMAKE_CXX_FLAGS="-Wall -Wextra -Wconversion"
61
d7999511b103 add a stupid little script to run initial cmake
terom
parents:
diff changeset
     7