Add CMake support

This commit is contained in:
Vladimir Romanov
2018-01-04 09:27:09 +03:00
parent 24a8bdec49
commit 18a261a6dd
6 changed files with 205 additions and 0 deletions

11
tutorial/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
set(TARGET mdbx_tutorial)
project(${TARGET})
add_executable(${TARGET}
sample-mdbx.c
)
target_link_libraries(${TARGET}
libmdbx
)