aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project')
-rw-r--r--vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/CMakeLists.txt16
-rw-r--r--vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/main.cpp22
2 files changed, 38 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/CMakeLists.txt b/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/CMakeLists.txt
new file mode 100644
index 0000000..4a54d5b
--- /dev/null
+++ b/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/CMakeLists.txt
@@ -0,0 +1,16 @@
+cmake_minimum_required(VERSION 3.30)
+project(tomlplusplus-test CXX)
+
+
+find_package(tomlplusplus CONFIG REQUIRED)
+
+add_executable(main main.cpp)
+target_link_libraries(main PRIVATE tomlplusplus::tomlplusplus)
+
+
+find_package(PkgConfig REQUIRED)
+pkg_check_modules(tomlplusplus_pc tomlplusplus REQUIRED IMPORTED_TARGET)
+
+add_executable(main-pkconfig main.cpp)
+target_compile_features(main-pkconfig PRIVATE cxx_std_17)
+target_link_libraries(main-pkconfig PRIVATE PkgConfig::tomlplusplus_pc)
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/main.cpp b/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/main.cpp
new file mode 100644
index 0000000..3382010
--- /dev/null
+++ b/vcpkg/scripts/test_ports/vcpkg-ci-tomlplusplus/project/main.cpp
@@ -0,0 +1,22 @@
+#include <iostream>
+#include <toml++/toml.hpp>
+
+int main(int argc, char** argv)
+{
+ if (argc < 2)
+ return 1;
+
+ try
+ {
+ toml::table tbl;
+ tbl = toml::parse_file(argv[1]);
+ std::cout << tbl << "\n";
+ }
+ catch (const toml::parse_error& err)
+ {
+ std::cerr << "Parsing failed: " << err << "\n";
+ return 2;
+ }
+
+ return 0;
+}