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

📄 jamfile

📁 C++的一个好库。。。现在很流行
💻
字号:

# Declare a project id.
project make 
    # Specify requirements for this project. They will be propagated to child project.
    # Use 'bjam -n' to see that MACRO is defined when compiling lib/b.obj
    : requirements <define>MACRO 
    ; 

# Load a project located at "extlib", and associated with project-id "/extlib".
use-project /extlib : extlib ;

# Construct a target 'a' from a list of sources using the specified rule.
make a 
    :   a.o  # Use a target declared in this Jamfile
    lib/b.o  # Use a target from other Jamfile
    @/extlib/c.o  # Refer to a library by project-id

    : gcc.link ;


# Construct another target.
make a.o : a.cpp : gcc.compile ;

⌨️ 快捷键说明

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