⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jamfile

📁 C++的一个好库。。。现在很流行
💻
字号:
# 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.

subproject libs/serialization/example ;

rule demo-bsl-build ( demo-name )
{
    exe $(demo-name)
        : # sources
            $(demo-name).cpp
            <lib>../build/boost_serialization
        : # requirements
            # copy to a path rooted at BOOST_ROOT:
            <locate>$(BOOST_ROOT)
            <include>$(BOOST_ROOT)  
            <sysinclude>$(BOOST_ROOT)
            <borland><*><cxxflags>-w-8080
            <msvc><release><cxxflags>-Gy
            <vc7><release><cxxflags>-Gy
            <vc-7_0><release><cxxflags>-Gy
            <vc-7_1><release><cxxflags>-Gy
        : # default build
            debug
    ;
}

demo-bsl-build demo ;
demo-bsl-build demo_auto_ptr ;
demo-bsl-build demo_exception ;
demo-bsl-build demo_fast_archive ;
demo-bsl-build demo_pimpl ;
demo-bsl-build demo_portable_archive ;
demo-bsl-build demo_shared_ptr ;
demo-bsl-build demo_xml ;
demo-bsl-build demo_xml_save ;
demo-bsl-build demo_xml_load ;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -