]> git.cworth.org Git - apitrace/commitdiff
image: Add forgotten CMakeLists.txt
authorJosé Fonseca <jfonseca@vmware.com>
Fri, 7 Dec 2012 08:27:26 +0000 (08:27 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Fri, 7 Dec 2012 08:27:26 +0000 (08:27 +0000)
doh..

image/CMakeLists.txt [new file with mode: 0644]

diff --git a/image/CMakeLists.txt b/image/CMakeLists.txt
new file mode 100644 (file)
index 0000000..ee4d98f
--- /dev/null
@@ -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}
+)