Added proxy base and fixed web server #1

Merged
Trianta merged 13 commits from dev into master 2023-09-30 17:14:11 -05:00
2 changed files with 2 additions and 18 deletions
Showing only changes of commit c4cd468480 - Show all commits

View File

@ -13,7 +13,3 @@ include_directories(${proxy-network_SOURCE_DIR}/src)
add_subdirectory(src) add_subdirectory(src)
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_subdirectory(test)
endif()

View File

@ -11,20 +11,8 @@ In order to compile the project, simply run these two commands:
cmake --build build cmake --build build
## Running the Project ## Running the Project
The program should now be compiled at ./build/bin/proxy-network The program should now be compiled at ./build/bin/proxy
Simply run the program using: Simply run the program using:
build/bin/proxy-network build/bin/proxy
## Testing the Project
The Unity framework is used for testing
Build the tests using:
cmake -DCMAKE_BUILD_TYPE=Debug -B build -S .
cmake --build build
Then run the tests using:
build/bin/testing