source: proiecte/SIMEO/HelloWorld/CMakeLists.txt @ 20

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

Add HelloWorld? application

File size: 378 bytes
Line 
1# HelloWorld is a minimal sample creating, stepping and deleting a Bullet dynamics world
2
3CMAKE_MINIMUM_REQUIRED(VERSION 2.0)
4
5INCLUDE_DIRECTORIES(
6        /export/home/stud/voicu.octavian/bullet/include
7)
8
9LINK_DIRECTORIES(
10        /export/home/stud/voicu.octavian/bullet/lib
11)
12
13LINK_LIBRARIES(
14        BulletDynamics BulletCollision LinearMath
15)
16
17ADD_EXECUTABLE(AppHelloWorld
18        HelloWorld.cpp
19)
20
Note: See TracBrowser for help on using the repository browser.