mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-23 07:08:21 +08:00
12 lines
149 B
CMake
12 lines
149 B
CMake
set(TARGET pcrf_test)
|
|
project(${TARGET})
|
|
|
|
add_executable(${TARGET}
|
|
pcrf_test.c
|
|
)
|
|
|
|
target_link_libraries(${TARGET}
|
|
libmdbx
|
|
)
|
|
|