]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/layout/CMakeLists.txt
Canvas/Layout: tweak the way elements are exposed to Nasal.
[simgear.git] / simgear / canvas / layout / CMakeLists.txt
1 include (SimGearComponent)
2
3 set(HEADERS
4   BoxLayout.hxx
5   Layout.hxx
6   LayoutItem.hxx
7   NasalWidget.hxx
8 )
9
10 set(SOURCES
11   BoxLayout.cxx
12   Layout.cxx
13   LayoutItem.cxx
14   NasalWidget.cxx
15 )
16
17 simgear_scene_component(canvas-layout canvas/layout "${SOURCES}" "${HEADERS}")
18
19 add_boost_test(canvas_layout
20   SOURCES canvas_layout_test.cxx
21   LIBRARIES ${TEST_LIBS}
22 )