Added basic structure and setup test directory
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
add_executable(proxy-network
|
||||
./proxy-network.cpp
|
||||
)
|
||||
|
||||
target_include_directories(proxy-network PUBLIC ${CMAKE_CURRENT_LIST_DIR})
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello world" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user