Added basic structure and setup test directory

This commit is contained in:
2023-09-12 14:17:01 -05:00
parent eab395c121
commit 629d1e657a
13 changed files with 656 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
add_executable(proxy-network
./proxy-network.cpp
)
target_include_directories(proxy-network PUBLIC ${CMAKE_CURRENT_LIST_DIR})
+6
View File
@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello world" << std::endl;
return 0;
}