mirror of
https://github.com/boostorg/serialization.git
synced 2026-02-21 15:22:15 +00:00
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
# Boost serialization Library Build Jamfile
|
|
# (C) Copyright Robert Ramey 2002-2004.
|
|
# Use, modification, and distribution are subject to the
|
|
# Boost Software License, Version 1.0. (See accompanying file
|
|
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
# See http://www.boost.org/libs/serialization for the library home page.
|
|
|
|
project boost/serialization
|
|
: source-location ../src
|
|
;
|
|
|
|
SOURCES =
|
|
basic_archive
|
|
basic_iarchive
|
|
basic_oarchive
|
|
basic_serializer_map
|
|
basic_text_iprimitive
|
|
basic_text_oprimitive
|
|
basic_xml_archive
|
|
binary_iarchive
|
|
binary_oarchive
|
|
codecvt_null
|
|
extended_type_info
|
|
extended_type_info_no_rtti
|
|
extended_type_info_typeid
|
|
polymorphic_iarchive
|
|
polymorphic_oarchive
|
|
text_iarchive
|
|
text_oarchive
|
|
void_cast
|
|
xml_grammar
|
|
xml_iarchive
|
|
xml_oarchive
|
|
;
|
|
|
|
WSOURCES =
|
|
basic_text_wiprimitive
|
|
basic_text_woprimitive
|
|
binary_wiarchive
|
|
binary_woarchive
|
|
text_wiarchive
|
|
text_woarchive
|
|
xml_wgrammar
|
|
xml_wiarchive
|
|
xml_woarchive
|
|
utf8_codecvt_facet
|
|
;
|
|
|
|
lib boost_serialization : $(SOURCES).cpp :
|
|
<toolset>msvc:<cxxflags>/Gy ;
|
|
|
|
lib boost_wserialization : $(WSOURCES).cpp :
|
|
<toolset>msvc:<cxxflags>/Gy ;
|