Fixed formatting of some cmake files

This commit is contained in:
Maxim Biro 2013-07-29 20:45:53 -04:00
parent a39ee46b18
commit 1d8f6e94e7
12 changed files with 32 additions and 24 deletions

View File

@ -6,5 +6,7 @@ set(exe_name DHT_bootstrap_daemon)
add_executable(${exe_name}
DHT_bootstrap_daemon.c)
target_link_libraries(${exe_name} config)
target_link_libraries(${exe_name}
config)
linkCoreLibraries(${exe_name})

View File

@ -4,6 +4,7 @@ project(DHT_bootstrap C)
set(exe_name DHT_bootstrap)
add_executable(${exe_name}
DHT_bootstrap.c ../testing/misc_tools.c)
DHT_bootstrap.c
../testing/misc_tools.c)
linkCoreLibraries(${exe_name})

View File

@ -8,8 +8,8 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_test.cmake)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Lossless_UDP_testclient.cmake)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Lossless_UDP_testserver.cmake)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Messenger_test.cmake)
if(NOT WIN32)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/nTox.cmake)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/toxic.cmake)
add_subdirectory(other)
endif()

View File

@ -4,6 +4,7 @@ project(DHT_cryptosendfiletest C)
set(exe_name DHT_cryptosendfiletest)
add_executable(${exe_name}
DHT_cryptosendfiletest.c misc_tools.c)
DHT_cryptosendfiletest.c
misc_tools.c)
linkCoreLibraries(${exe_name})

View File

@ -4,6 +4,7 @@ project(DHT_test C)
set(exe_name DHT_test)
add_executable(${exe_name}
DHT_test.c misc_tools.c)
DHT_test.c
misc_tools.c)
linkCoreLibraries(${exe_name})

View File

@ -6,6 +6,7 @@ set(exe_name nTox)
add_executable(${exe_name}
nTox.c misc_tools.c)
target_link_libraries(${exe_name} ncurses)
target_link_libraries(${exe_name}
ncurses)
linkCoreLibraries(${exe_name})

View File

@ -4,8 +4,10 @@ project(toxic C)
set(exe_name toxic)
add_executable(${exe_name}
toxic/main.c toxic/prompt.c)
toxic/main.c
toxic/prompt.c)
target_link_libraries(${exe_name} curses)
target_link_libraries(${exe_name}
curses)
linkCoreLibraries(${exe_name})