Skip to content
Snippets Groups Projects
Commit d8d60215 authored by armatusmiles's avatar armatusmiles
Browse files

[+] libdap-test module

parent c66341ef
No related branches found
No related tags found
No related merge requests found
[submodule "libdap-server-core"]
path = libdap-server-core
url = https://github.com/kelvinblockchain/libdap-server-core.git
[submodule "test/libdap-test"]
path = test/libdap-test
url = https://github.com/kelvinblockchain/libdap-test.git
......@@ -3,6 +3,11 @@ project (dap_udp_server C)
add_subdirectory(libdap-server-core)
if(BUILD_DAP_UDP_SERVER_TESTS)
enable_testing()
add_subdirectory(test)
endif()
set(DAP_UDP_SERVER_SRCS dap_udp_server.c dap_udp_client.h dap_udp_client.c)
add_library(${PROJECT_NAME} STATIC ${DAP_UDP_SERVER_SRCS})
......
cmake_minimum_required(VERSION 3.0)
project(udp-server-test)
set(CMAKE_C_STANDARD 11)
add_subdirectory(libdap-test)
file(GLOB SRC *.h *.c)
add_executable(${PROJECT_NAME} ${SRC})
target_link_libraries(${PROJECT_NAME} dap_test)
add_test(
NAME udp-server-test
COMMAND udp-server-test
)
Subproject commit e542fdbcbced6ce9b1c4cae4a92fa8580403941e
#include <stdio.h>
int main()
{
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment