mirror of
https://github.com/isar/libmdbx.git
synced 2025-03-04 17:18:13 +08:00
8 lines
126 B
CMake
8 lines
126 B
CMake
set(TARGET mdbx_tutorial)
|
|
project(${TARGET})
|
|
|
|
add_executable(${TARGET} sample-mdbx.c)
|
|
|
|
target_link_libraries(${TARGET} mdbx)
|
|
|