This commit is contained in:
irungentoo 2013-06-25 06:23:06 -04:00
commit b9563fd9e2
3 changed files with 38 additions and 0 deletions

17
.travis.yml Normal file
View File

@ -0,0 +1,17 @@
language: c
compiler:
- gcc
script:
- cmake CMakeLists.txt
- make -j3
notifications:
email: false
irc:
channels:
- "chat.freenode.net#InsertProjectNameHere"
on_success: always
on_failure: always

17
CMakeLists.txt Normal file
View File

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 2.6.0)
project(TOX)
set(core_sources
core/DHT.c)
set(test_sources
testing/DHT_test.c)
add_executable(TOX-app
${core_sources}
${test_sources})
if(WIN32)
target_link_libraries(TOX-app ws2_32)
endif(WIN32)

4
testing/muh parser.php Normal file
View File

@ -0,0 +1,4 @@
<?php
$string = file_get_contents("test.json");
$json_a=json_decode($string,true);
?>