zoukankan      html  css  js  c++  java
  • FLTK 1.1.10 VS2010 Configuration 配置


    Download FLTK 1.1.10 at here.

    Download VS2010

    Download CMake 2.8.12

    I assume you've already installed VS2010 and CMake 2.8.12 correctly.

    Compile the VTK:

    Start CMake 2.8.12, fill the source and destination:

    source: C:/FLTK/fltk-1.1.10

    destination: C:/FLTK/VS2010

    Click Configure and use Visual Studio 10 2010 to complie.

    When first configure is done, select Grouped and Advanced.

    BUILD_EXAMPLES          [ON]  
    BUILD_TEST              [ON]  
    CMAKE_INSTALL_PREFIX    [C:/FLTK/VS2010_install]  
    

    click Configure again.

    After configure is done (No errors show), click Generate.

    Go back to your build folder, open FLTK.sln, right click ALL_BUILD, choose Rebuild.

    Wait a long time for make process, have a cup of coffee :)

    After rebuild is done, right click INSTALL, choose Build.

    Now, the configuration is done, enjoy it :)

    Create a new empty project,

    Open VS2010, create an empty project, go to Properties -> Linker -> Input -> Additional Dependencies, copy the following items:

    fltk.lib
    fltk_forms.lib
    fltk_gl.lib
    fltk_images.lib
    fltk_jpeg.lib
    fltk_png.lib
    fltk_zlib.lib

    Create a new .cpp file, and try the following test code:

    #include "FL/Fl.h"
    #include "FL/Fl_Box.h"
    #include "FL/Fl_Window.h"
    
    int main()
    {
    
        Fl_Window window(500,500, "Test");
    
        Fl_Box box(0,0,500,500,"Hello World!");
    
        window.show();
    
        return Fl::run();
    
    }
  • 相关阅读:
    java中的io笔记
    Android面试
    使用org.apache.commons.net.ftp包开发FTP客户端,实现进度汇报,实现断点续传,中文支持
    linux基本命令学习
    jmeter简单的压力测试
    linux配置tomcat项目包
    linux配置jdk环境
    mysql插入大量数据
    jmeter压测mysql数据库
    selenium+python自动化元素定位
  • 原文地址:https://www.cnblogs.com/grandyang/p/5126116.html
Copyright © 2011-2022 走看看