mirror of
https://github.com/isar/libmdbx.git
synced 2025-03-13 20:18:15 +08:00
12 lines
146 B
CMake
12 lines
146 B
CMake
set(TARGET pcrf_test)
|
|
project(${TARGET})
|
|
|
|
add_executable(${TARGET}
|
|
pcrf_test.c
|
|
)
|
|
|
|
target_link_libraries(${TARGET}
|
|
mdbx
|
|
)
|
|
|