Configuring CMake file

This commit is contained in:
Vinicius 2023-12-19 23:55:33 -03:00
parent af470b670b
commit b5ff77cc41
1 changed files with 2 additions and 2 deletions

View File

@ -33,5 +33,5 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -march=native")
add_executable(server ${SOURCE_FILES} ./src/main_server.c)
add_executable(client ${SOURCE_FILES} ./src/main_client.c)
add_executable(./bin/server ${SOURCE_FILES} ./src/main_server.c)
add_executable(./bin/client ${SOURCE_FILES} ./src/main_client.c)