Skip to content
Snippets Groups Projects
Commit 2a075869 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

[*] Submods checks

parent f2ba1048
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,9 @@ cmake_minimum_required(VERSION 3.1)
project (dap_udp_server C)
if(NOT (${SUBMODULES_NO_BUILD} MATCHES ON))
add_subdirectory(libdap-server-core)
if ( NOT ( TARGET dap_core_server ) )
add_subdirectory(libdap-server-core)
endif()
enable_testing()
add_subdirectory(test)
endif()
......
......@@ -3,7 +3,9 @@ project(udp-server-test)
set(CMAKE_C_STANDARD 11)
add_subdirectory(libdap-test)
if ( NOT ( TARGET dap_test ) )
add_subdirectory(libdap-test)
endif()
file(GLOB SRC *.h *.c)
......
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