Code: Select all
anthony@xi:~/DATA/Code/bullet-2.81-rev2613/Demos$ ./configure
bash: ./configure: No such file or directory
anthony@xi:~/DATA/Code/bullet-2.81-rev2613/Demos$ cmake . -G "Unix Makefiles"
CMake Warning (dev) in CMakeLists.txt:
No cmake_minimum_required command is present. A line of code such as
cmake_minimum_required(VERSION 2.8)
should be added at the top of the file. The version specified may be lower
if you wish to support older CMake versions for this project. For more
information run "cmake --help-policy CMP0000".
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring done
-- Generating done
-- Build files have been written to: /home/anthony/DATA/Code/bullet-2.81-rev2613/Demos
Code: Select all
anthony@xi:~/DATA/Code/bullet-2.81-rev2613/Demos$ make
[100%] Building CXX object HelloWorld/CMakeFiles/AppHelloWorld.dir/HelloWorld.o
/home/anthony/DATA/Code/bullet-2.81-rev2613/Demos/HelloWorld/HelloWorld.cpp:17:36: fatal error: btBulletDynamicsCommon.h: No such file or directory
compilation terminated.
make[2]: *** [HelloWorld/CMakeFiles/AppHelloWorld.dir/HelloWorld.o] Error 1
make[1]: *** [HelloWorld/CMakeFiles/AppHelloWorld.dir/all] Error 2
make: *** [all] Error 2
So I try this:
Code: Select all
anthony@xi:~/DATA/Code/bullet-2.81-rev2613/Demos$ cd AllBulletDemos/
Code: Select all
anthony@xi:~/DATA/Code/bullet-2.81-rev2613/Demos/AllBulletDemos$ make
[ 4%] Building CXX object CMakeFiles/AppAllBulletDemos.dir/Main.o
/home/anthony/DATA/Code/bullet-2.81-rev2613/Demos/AllBulletDemos/Main.cpp:21:26: fatal error: glui/GL/glui.h: No such file or directory
compilation terminated.
make[2]: *** [CMakeFiles/AppAllBulletDemos.dir/Main.o] Error 1
make[1]: *** [CMakeFiles/AppAllBulletDemos.dir/all] Error 2
make: *** [all] Error 2
Do I have to insert new environment variables? Why can't the build script figure out where these files are?
Any tips appreciated!
-A