#This Jamfile requires boost-build v2 to build. import modules ; import os ; BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ; use-project /boost/thread : $(BOOST_ROOT)/libs/thread/build ; use-project /boost/filesystem : $(BOOST_ROOT)/libs/filesystem/build ; use-project /boost/date_time : $(BOOST_ROOT)/libs/date_time/build ; lib winsock : : wsock32.lib ; project torrent : requirements : usage-requirements ./include $(BOOST_ROOT) release:NDEBUG BOOST_ALL_NO_LIB # devstudio switches msvc-7:/Zc:wchar_t msvc-7.1:/Zc:wchar_t msvc:WIN32 # gcc switches gcc:-Wno-unused-variable ; LIBS = ; SOURCES = allocate_resources.cpp alert.cpp entry.cpp identify_client.cpp peer_connection.cpp piece_picker.cpp policy.cpp session.cpp socket.cpp stat.cpp storage.cpp torrent.cpp torrent_handle.cpp torrent_info.cpp tracker_manager.cpp http_tracker_connection.cpp udp_tracker_connection.cpp sha1.c ; # some windows specific settings if [ modules.peek : NT ] && toolset != msvc-6 { SOURCES += file_win.cpp ; LIBS += winsock ; } else { SOURCES += file.cpp ; } lib torrent : zlib//zlib src/$(SOURCES) /boost/thread//boost_thread/shared /boost/date_time//boost_date_time/static /boost/filesystem//boost_filesystem/static $(LIBS) : multi static : debug release ;