Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ _deps/

# Testing credentials file
testing_credentials.json

# Performance test values files
random_*.txt
16 changes: 16 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,21 @@ target_include_directories(dbpa_remote_testapp PRIVATE
${CMAKE_BINARY_DIR}/_deps/snappy-src
)

# Performance Test Script executable
add_executable(performance_test src/scripts/performance_test.cpp)
target_link_libraries(performance_test
dbps_remote_lib
dbps_client_lib
dbps_common_lib
dbps_server_lib
dbps_local_lib
)
target_include_directories(performance_test PRIVATE
${CMAKE_BINARY_DIR}/_deps/cxxopts-src/include
src/processing
${CMAKE_BINARY_DIR}/_deps/snappy-src
)

# =============================================================================
# Test Executables
# =============================================================================
Expand Down Expand Up @@ -486,6 +501,7 @@ add_custom_target(executables
DEPENDS
dbps_api_server
dbpa_remote_testapp
performance_test
COMMENT "Building main executables"
)

Expand Down
Loading