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

[+] Travis

parent d8d60215
No related branches found
No related tags found
No related merge requests found
sudo: required
language: cpp
compiler: gcc
dist: trusty
notifications:
email: false
before_install:
- git submodule init
- git submodule update --recursive
script:
- export CC=gcc-5
- mkdir build
- cd build
- cmake -DBUILD_DAP_UDP_SERVER_TESTS=ON ../
- make
- ctest --verbose
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- libev-dev
......@@ -12,6 +12,6 @@ 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})
target_link_libraries(${PROJECT_NAME} dap_core_server)
target_link_libraries(${PROJECT_NAME} dap_core_server ev)
target_include_directories(${PROJECT_NAME} INTERFACE .)
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