cmake_minimum_required(VERSION 2.6) project(simeo) if (NOT BULLET_DIR) message(FATAL_ERROR "BULLET_DIR not defined, run `cmake -D BULLET_DIR=/path/to/bullet-dev ..` from the build directory.") endif (NOT BULLET_DIR) include_directories( ${BULLET_DIR}/include ) link_directories( ${BULLET_DIR}/lib ) add_subdirectory(src)