From: José Fonseca Date: Fri, 7 Dec 2012 08:27:26 +0000 (+0000) Subject: image: Add forgotten CMakeLists.txt X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=47209604a9dad6d134274dcc33556374aef0f0f1;hp=e51e22f4dbeb0851521b68eca1ac4f42f57f5d2c;p=apitrace image: Add forgotten CMakeLists.txt doh.. --- 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} +)