From 77060a4fb8c16b60e1ed60e991aceca82d3abd58 Mon Sep 17 00:00:00 2001 From: kestred Date: Sun, 26 Jan 2014 12:52:37 -0700 Subject: [PATCH] Add CMakeLists for panda/metakubs/pandagl. Not yet built. --- panda/metalibs/pandagl/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 panda/metalibs/pandagl/CMakeLists.txt diff --git a/panda/metalibs/pandagl/CMakeLists.txt b/panda/metalibs/pandagl/CMakeLists.txt new file mode 100644 index 0000000000..ecc86d95cd --- /dev/null +++ b/panda/metalibs/pandagl/CMakeLists.txt @@ -0,0 +1,7 @@ +if(HAVE_GL) + add_definitions(-DBUILDING_PANDAGL) + set(PANDAGL_LINK_TARGETS p3glgsg) + + add_library(pandagl pandagl.cxx) + target_link_libraries(pandagl ${PANDAGL_LINK_TARGETS}) +endif()