]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/util/CMakeLists.txt
Work around apparent OSG 3.2.0 normal binding bug.
[simgear.git] / simgear / scene / util / CMakeLists.txt
index d10a42045b70d9c6de0a5de3dd8c43e0739679ab..9dec41159b0bfe9f25aef3fe222173156cf01a19 100644 (file)
@@ -1,11 +1,13 @@
 include (SimGearComponent)
 
-set(HEADERS 
+set(HEADERS
+    ColorInterpolator.hxx
     CopyOp.hxx
     DeletionManager.hxx
     NodeAndDrawableVisitor.hxx
     Noise.hxx
     OptionsReadFileCallback.hxx
+    OsgDebug.hxx
     OsgMath.hxx
     OsgSingleton.hxx
     parse_color.hxx
@@ -29,12 +31,14 @@ set(HEADERS
     project.hxx
     )
 
-set(SOURCES 
+set(SOURCES
+    ColorInterpolator.cxx
     CopyOp.cxx
     DeletionManager.cxx
     NodeAndDrawableVisitor.cxx
     Noise.cxx
     OptionsReadFileCallback.cxx
+    OsgDebug.cxx
     parse_color.cxx
     PrimitiveUtils.cxx
     QuadTreeBuilder.cxx
@@ -53,7 +57,9 @@ set(SOURCES
 simgear_scene_component(util scene/util "${SOURCES}" "${HEADERS}")
 
 if(ENABLE_TESTS)
+
 add_executable(test_parse_color parse_color_test.cxx )
-add_test(test_parse_color ${EXECUTABLE_OUTPUT_PATH}/test_parse_color)
-target_link_libraries(test_parse_color SimGearScene)
+add_test(parse_color ${EXECUTABLE_OUTPUT_PATH}/test_parse_color)
+target_link_libraries(test_parse_color ${TEST_LIBS})
+
 endif(ENABLE_TESTS)