mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-04-21 08:25:53 +03:00
18 lines
433 B
CMake
18 lines
433 B
CMake
#
|
|
# Copyright (C) 2018 Codership Oy <info@codership.com>
|
|
#
|
|
|
|
add_executable(dbsim
|
|
db_client.cpp
|
|
db_client_service.cpp
|
|
db_params.cpp
|
|
db_server.cpp
|
|
db_server_state.cpp
|
|
db_simulator.cpp
|
|
db_storage_engine.cpp
|
|
dbsim.cpp
|
|
)
|
|
|
|
target_link_libraries(dbsim wsrep-lib ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_SYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} ${Boost_THREAD_LIBRARY})
|
|
set_property(TARGET dbsim PROPERTY CXX_STANDARD 14)
|