Skip to content

Commit

Permalink
Add drivertest
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Gouache committed Apr 19, 2024
1 parent 7d08dd6 commit bf5b40d
Show file tree
Hide file tree
Showing 5 changed files with 603 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.20)
# Enforce c++17 standard.
set (CMAKE_CXX_STANDARD 17)

project(khiops-gcs)
project(khiops-gcs LANGUAGES CXX)

# Find dependencies provided by vcpkg (via vcpkg.cmake)
find_package(fmt CONFIG REQUIRED)
Expand All @@ -32,6 +32,10 @@ add_library(khiopsdriver_file_gcs2 MODULE src/gcsplugin2.cpp)
target_link_libraries(khiopsdriver_file_gcs2
PRIVATE CURL::libcurl google-cloud-cpp::storage google-cloud-cpp::storage_protos google-cloud-cpp::experimental-storage-grpc spdlog::spdlog_header_only)

add_executable(drivertest src/drivertest.cpp src/libraryloader.h src/libraryloader.cpp)
target_link_libraries(drivertest dl)



# Debugging WIN compilation
add_executable(MainTest src/maintest.cpp)
Expand Down
Loading

0 comments on commit bf5b40d

Please sign in to comment.