We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 711c8a6 commit 9b86d1aCopy full SHA for 9b86d1a
.gitignore
@@ -1,3 +1,4 @@
1
target
2
**/*.rs.bk
3
Cargo.lock
4
+/build
CMakeLists.txt
@@ -0,0 +1,11 @@
+# This file is used only for IDE support
+
+cmake_minimum_required(VERSION 3.0.0)
+project(mupdf-wrapper VERSION 0.1.0)
5
6
+include_directories(mupdf-sys mupdf-sys/mupdf/include)
7
+add_library(mupdf-wrapper mupdf-sys/wrapper.c)
8
9
+set(CPACK_PROJECT_NAME ${PROJECT_NAME})
10
+set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
11
+include(CPack)
0 commit comments