patched CMakeLists.txt with Rudoy Georg changes

This commit is contained in:
Arvid Norberg 2008-12-25 01:24:48 +00:00
parent 6f80fdf9f7
commit ed5cbcca8a
1 changed files with 65 additions and 52 deletions

View File

@ -56,6 +56,7 @@ set(sources
ut_pex ut_pex
ut_metadata ut_metadata
smart_ban smart_ban
lt_trackers
) )
# -- kademlia -- # -- kademlia --
@ -97,6 +98,8 @@ option(dht "enable support for Mainline DHT" ON)
option(resolve-countries "enable support for resolving countries from peer IPs" ON) option(resolve-countries "enable support for resolving countries from peer IPs" ON)
option(unicode "enable unicode support" ON) option(unicode "enable unicode support" ON)
option(deprecated-functions "enable deprecated functions for backwards compatibility" ON) option(deprecated-functions "enable deprecated functions for backwards compatibility" ON)
option(build_tests "build tests" ON)
option(build_examples "build examples" ON)
if (encryption) if (encryption)
list(APPEND sources pe_crypto) list(APPEND sources pe_crypto)
@ -118,9 +121,9 @@ else (dht)
endif (dht) endif (dht)
if (shared) if (shared)
add_library(torrent SHARED ${sources2} ${zlib_sources2}) add_library(torrent-rasterbar SHARED ${sources2} ${zlib_sources2})
else (shared) else (shared)
add_library(torrent STATIC ${sources2} ${zlib_sources2}) add_library(torrent-rasterbar STATIC ${sources2} ${zlib_sources2})
endif (shared) endif (shared)
FIND_PACKAGE( Boost 1.34 COMPONENTS filesystem thread) FIND_PACKAGE( Boost 1.34 COMPONENTS filesystem thread)
@ -128,18 +131,18 @@ if (NOT Boost_VERSION LESS 103500)
FIND_PACKAGE( Boost 1.35 COMPONENTS filesystem thread system) FIND_PACKAGE( Boost 1.35 COMPONENTS filesystem thread system)
endif (NOT Boost_VERSION LESS 103500) endif (NOT Boost_VERSION LESS 103500)
include_directories(${Boost_INCLUDE_DIR}) include_directories(${Boost_INCLUDE_DIR})
target_link_libraries(torrent ${Boost_LIBRARIES}) target_link_libraries(torrent-rasterbar ${Boost_LIBRARIES})
if (WIN32) if (WIN32)
target_link_libraries(torrent wsock32 ws2_32) target_link_libraries(torrent-rasterbar wsock32 ws2_32)
endif (WIN32) endif (WIN32)
if (encryption) if (encryption)
add_definitions(-DTORRENT_USE_OPENSSL) add_definitions(-DTORRENT_USE_OPENSSL)
if (WIN32) if (WIN32)
target_link_libraries(torrent ssleay32 libeay32 advapi32 user32 shell32 gdi32) target_link_libraries(torrent-rasterbar ssleay32 libeay32 advapi32 user32 shell32 gdi32)
else (WIN32) else (WIN32)
target_link_libraries(torrent crypto ssl) target_link_libraries(torrent-rasterbar crypto ssl)
endif (WIN32) endif (WIN32)
else (encryption) else (encryption)
add_definitions(-DTORRENT_DISABLE_ENCRYPTION) add_definitions(-DTORRENT_DISABLE_ENCRYPTION)
@ -179,14 +182,23 @@ endif(MSVC)
add_definitions(-D_FILE_OFFSET_BITS=64) add_definitions(-D_FILE_OFFSET_BITS=64)
if (tcmalloc) if (tcmalloc)
target_link_libraries(torrent tcmalloc) target_link_libraries(torrent-rasterbar tcmalloc)
endif (tcmalloc) endif (tcmalloc)
target_link_libraries(torrent z) target_link_libraries(torrent-rasterbar z)
include_directories(${includes}) include_directories(${includes})
# === build examples === set_target_properties(torrent-rasterbar PROPERTIES
SOVERSION 1
VERSION 1)
install(TARGETS torrent-rasterbar DESTINATION lib)
install(DIRECTORY include/libtorrent
DESTINATION include
PATTERN ".svn" EXCLUDE)
# === build examples ===
if(build_examples)
set(examples client_test dump_torrent simple_client enum_if make_torrent) set(examples client_test dump_torrent simple_client enum_if make_torrent)
foreach(s ${examples}) foreach(s ${examples})
@ -197,9 +209,9 @@ endforeach(s)
FIND_PACKAGE( Boost 1.34 COMPONENTS program_options regex) FIND_PACKAGE( Boost 1.34 COMPONENTS program_options regex)
target_link_libraries(client_test ${Boost_LIBRARIES}) target_link_libraries(client_test ${Boost_LIBRARIES})
include_directories(${Boost_INCLUDE_DIR}) include_directories(${Boost_INCLUDE_DIR})
endif(build_examples)
# === build tests === # === build tests ===
if(build_tests)
set(tests set(tests
test_auto_unchoke test_auto_unchoke
test_http_connection test_http_connection
@ -228,7 +240,7 @@ enable_testing()
foreach(s ${tests}) foreach(s ${tests})
add_executable(${s} test/${s}.cpp) add_executable(${s} test/${s}.cpp)
target_link_libraries(${s} torrent test_common) target_link_libraries(${-rasterbars} torrent-rasterbar test_common)
add_test(${s} ${s}) add_test(${s} ${s})
endforeach(s) endforeach(s)
@ -237,4 +249,5 @@ target_link_libraries(test_upnp torrent)
add_executable(test_natpmp test/test_natpmp.cpp) add_executable(test_natpmp test/test_natpmp.cpp)
target_link_libraries(test_natpmp torrent) target_link_libraries(test_natpmp torrent)
endif(build_tests)