From 47209604a9dad6d134274dcc33556374aef0f0f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 7 Dec 2012 08:27:26 +0000 Subject: [PATCH 1/1] image: Add forgotten CMakeLists.txt doh.. --- image/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 image/CMakeLists.txt diff --git a/image/CMakeLists.txt b/image/CMakeLists.txt new file mode 100644 index 0000000..ee4d98f --- /dev/null +++ b/image/CMakeLists.txt @@ -0,0 +1,14 @@ +include_directories ( + ${PNG_INCLUDE_DIR} +) + +add_library (image STATIC + image.cpp + image_bmp.cpp + image_png.cpp + image_pnm.cpp +) + +target_link_libraries (image + ${PNG_LIBRARIES} +) -- 2.43.0