This commit is contained in:
2024-09-16 15:02:23 +02:00
parent 2c97228e3e
commit 3973c7f6bb
7 changed files with 41 additions and 1 deletions

6
src/CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
find_package(LibXml2 REQUIRED)
find_package(cpr CONFIG REQUIRED)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE LibXml2::LibXml2 cpr::cpr)

5
src/main.cpp Normal file
View File

@ -0,0 +1,5 @@
#include <iostream>
int int main(int argc, char *argv[]) {
std::cout << "Hello, world!" << std::endl;
}