diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-16 12:13:35 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-16 12:17:46 -0400 |
commit | eaaae2c0f77fe371b1da8c2c248888103d488961 (patch) | |
tree | 1137d0e51c214fb9aec6f321c40250a49c6fdba9 /CMakeLists.txt | |
parent | 9ad649be44c568a00f2f407d715d07cd585c2b25 (diff) | |
download | stasis-eaaae2c0f77fe371b1da8c2c248888103d488961.tar.gz |
First pass at test result creation, and optional markdown->html conversion
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e9a001e..5b8376e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,8 +5,11 @@ include(GNUInstallDirs) set(nix_cflags -Wall -Wextra -fPIC) set(win_cflags /Wall) set(CMAKE_C_STANDARD 99) - -link_libraries(curl) +find_package(libxml2) +find_package(CURL) +link_libraries(CURL::libcurl) +link_libraries(LibXml2::LibXml2) +include_directories(${LIBXML2_INCLUDE_DIR}) if (CMAKE_C_COMPILER_ID STREQUAL "GNU") message("gnu options") |