]> git.cworth.org Git - apitrace/blobdiff - image/CMakeLists.txt
image: Add forgotten CMakeLists.txt
[apitrace] / image / CMakeLists.txt
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}
+)