mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
18 lines
358 B
CMake
18 lines
358 B
CMake
# Part of nudb
|
|
|
|
GroupSources (include/nudb nudb)
|
|
GroupSources (extras/nudb extras)
|
|
GroupSources (examples/ "/")
|
|
|
|
add_executable (example
|
|
${NUDB_INCLUDES}
|
|
${EXTRAS_INCLUDES}
|
|
example.cpp
|
|
)
|
|
|
|
if (WIN32)
|
|
target_link_libraries (example ${Boost_LIBRARIES})
|
|
else ()
|
|
target_link_libraries (example ${Boost_LIBRARIES} rt Threads::Threads)
|
|
endif ()
|