Files
rippled/src/nudb/examples/CMakeLists.txt

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 ()