]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/CMakeLists.txt
Knob animation: shifted mode binding.
[simgear.git] / simgear / scene / util / CMakeLists.txt
1 include (SimGearComponent)
2
3 set(HEADERS 
4     CopyOp.hxx
5     DeletionManager.hxx
6     NodeAndDrawableVisitor.hxx
7     Noise.hxx
8     OptionsReadFileCallback.hxx
9     OsgMath.hxx
10     OsgSingleton.hxx
11     parse_color.hxx
12     PrimitiveUtils.hxx
13     QuadTreeBuilder.hxx
14     RenderConstants.hxx
15     SGDebugDrawCallback.hxx
16     SGEnlargeBoundingBox.hxx
17     SGNodeMasks.hxx
18     SGPickCallback.hxx
19     SGReaderWriterOptions.hxx
20     SGSceneFeatures.hxx
21     SGSceneUserData.hxx
22     SGStateAttributeVisitor.hxx
23     SGTextureStateAttributeVisitor.hxx
24     SGUpdateVisitor.hxx
25     SplicingVisitor.hxx
26     StateAttributeFactory.hxx
27     UpdateOnceCallback.hxx
28     VectorArrayAdapter.hxx
29     project.hxx
30     )
31
32 set(SOURCES 
33     CopyOp.cxx
34     DeletionManager.cxx
35     NodeAndDrawableVisitor.cxx
36     Noise.cxx
37     OptionsReadFileCallback.cxx
38     parse_color.cxx
39     PrimitiveUtils.cxx
40     QuadTreeBuilder.cxx
41     SGEnlargeBoundingBox.cxx
42     SGReaderWriterOptions.cxx
43     SGSceneFeatures.cxx
44     SGSceneUserData.cxx
45     SGStateAttributeVisitor.cxx
46     SGTextureStateAttributeVisitor.cxx
47     SplicingVisitor.cxx
48     StateAttributeFactory.cxx
49     UpdateOnceCallback.cxx
50     project.cxx
51     )
52
53 simgear_scene_component(util scene/util "${SOURCES}" "${HEADERS}")
54
55 if(ENABLE_TESTS)
56 add_executable(test_parse_color parse_color_test.cxx )
57 add_test(test_parse_color ${EXECUTABLE_OUTPUT_PATH}/test_parse_color)
58 target_link_libraries(test_parse_color SimGearScene)
59 endif(ENABLE_TESTS)