Skip to content

Commit

Permalink
Added a simple cmake list
Browse files Browse the repository at this point in the history
  • Loading branch information
nurupo committed Jun 25, 2013
1 parent 8bc40b7 commit 20c7244
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 20c7244

Please sign in to comment.