zoukankan      html  css  js  c++  java
  • boost 1.52在windows下的配置

    // test_for_static_lib.cpp : Defines the entry point for the console application.
    //

    #include "stdafx.h"
    #include <cstdio>
    #include<iostream>
    #include<boost/any.hpp>
    int _tmain(int argc, _TCHAR* argv[])
    {
        boost::any a(5);
        a=7.67;
        std::cout<<boost::any_cast<double>(a)<<std::endl;
        printf("%d",1);
        getchar();
        return 0;
    }

    下载单独静态编译好的lib,

    以及window下的boost包,用于include 头文件

    在工程的属性上选择头文件所在路径

    在c++ general下选择Additonal Include Directories:放置头文件路径

    D:\Documents\Downloads\boost_1_52_0\boost_1_52_0

    在Linker general下选择Additonal Include Directories:放置静态库路径

    C:\mao\lib32

  • 相关阅读:
    MongoDB笔记
    mysql笔记
    08-下载中间件
    ubuntu1804安装pycharm2018.3.x
    02-CSS基础
    14-eval 函数
    13-文件
    12-模块和包
    11-异常
    有关dir和 unittest
  • 原文地址:https://www.cnblogs.com/lexus/p/2855037.html
Copyright © 2011-2022 走看看