source: proiecte/SIMEO/Simeo/CMakeLists.txt @ 167

Last change on this file since 167 was 167, checked in by (none), 14 years ago

Simeo: added final project and also older proof of concept code.

We used Git for version control, so look at the Git repo
in SIMEO/Simeo/ for more info.

File size: 329 bytes
Line 
1cmake_minimum_required(VERSION 2.6)
2
3project(simeo)
4
5if (NOT BULLET_DIR)
6        message(FATAL_ERROR "BULLET_DIR not defined, run `cmake -D BULLET_DIR=/path/to/bullet-dev ..` from the build directory.")
7endif (NOT BULLET_DIR)
8
9include_directories(
10        ${BULLET_DIR}/include
11)
12
13link_directories(
14        ${BULLET_DIR}/lib
15)
16
17add_subdirectory(src)
Note: See TracBrowser for help on using the repository browser.