~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Thomas Geymayer
  • Date: 2010-03-26 11:56:05 UTC
  • Revision ID: tomgey@gmail.com-20100326115605-iir4j91614620ij3
Fixed .obj loading, enable grabbing and general cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
include(CheckBuildDependencies)
10
10
 
11
11
# ------------------------------------------------------------------------------
12
 
# Evaluate collected dependency results and display a message (throws a fatal
13
 
# error on missing packages)
14
 
#
15
 
 
16
 
MACRO_DISPLAY_FEATURE_LOG()
17
 
 
18
 
# ------------------------------------------------------------------------------
19
12
# add some compiler options for the gcc
20
13
#
21
14
 
43
36
 
44
37
add_subdirectory(src)
45
38
add_subdirectory(examples EXCLUDE_FROM_ALL)
46
 
add_subdirectory(test EXCLUDE_FROM_ALL)
 
39
 
 
40
if(Boost_UNIT_TEST_FRAMEWORK_LIBRARY_FOUND)
 
41
  add_subdirectory(test EXCLUDE_FROM_ALL)
 
42
endif()
 
43
 
 
44
# ------------------------------------------------------------------------------
 
45
# Evaluate collected dependency results and display a message (throws a fatal
 
46
# error on missing packages)
 
47
#
 
48
 
 
49
MACRO_DISPLAY_FEATURE_LOG()