proxy-network/test/CMakeLists.txt
2023-09-19 14:11:18 -05:00

8 lines
214 B
CMake

find_package(unity REQUIRED)
include_directories(${CMAKE_SOURCE_DIR}/src)
add_executable(testing
./test.cpp
)
set_target_properties(testing PROPERTIES LINKER_LANGUAGE CXX)
target_link_libraries(testing unity)