Install for 64bit  Glui2.36.zip 을 다운로드  src  msvc  glui.sin 파일을 Visual Studio 2010 으로 열기  _glui library 를 선택후 빌드  빌드시 다음과 같은 오류가 발생하면 error C2252:

Slides:



Advertisements
Similar presentations
Introduction to OpenCV Dr. Chung-Hao Chen Haole Guo Sep 2011.
Advertisements

2010 Microsoft Student Partners. T OPICS - User Interface and Editor Improvements - New windows: Call Hierarchy, Navigate To - IntelliSense - Generate.
Programming with Objects: Class Libraries and Reusable Code.
Now Playing: Homecoming Kanye West from Graduation Released September 11, 2007.
CUFSM3.12 Installation Standalone version Matlab version
How to install CGAL Yuanzhen Wang. What is CGAL Computational Geometry Algorithms Library “Provide easy access to efficient and reliable geometric algorithms.
LaMothe DirectX Game in Visual Studio 2008 Matthew Sable.
CS380 LAB I OpenGL Donghyuk Kim Reference1. [OpenGL course slides by Rasmus Stenholt] Reference2. [
September 2008 IT Software Development Guide.
OPENCV TUTORIAL OpenCV Windows 7 Microsoft Visual C++ Express 2010.
Object-Oriented Programming in C++
Computing IV Visual C Introduction with OpenCV Example Xinwen Fu.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
Computer Programming for Engineers Introduction to Programming in C Language on Visual C Platform Intro. Comp. Prog. C-Language1.
C O M P U T E R G R A P H I C S Jie chen Computer graphic -- OpenGL Howto.
HEVC Reference software HM 4.0
Computer Graphics with OpenGL 교재 : [1] OPENGL 을 이용한 컴퓨터 그래픽스 5 판, 번역서, Edward Angel 저, 구자영 등역, 사이텍미디어, 2009 참고서적 : [1] Computer Graphics with OpenGL, Donald.
OpenGl Graphics Programming. Introduction OpenGL is a low-level graphics library specification. It makes available to the programmer a small set of geomteric.
Install and Setup VC++ and OpenGL Introduction to Computer Graphics and Animation (Principle of Computer Graphics) Rattapoom Waranusast.
CS 450: COMPUTER GRAPHICS INSTALLING GLUT AND GLEW SPRING 2015 DR. MICHAEL J. REALE.
Doing Snippets in.NET Tuc Goodwin February Agenda What is a “snippet”? Where do I find Snippets? How do I use snippets? Demo How do I create a snippet?
NUNIT - Testing your Application. NUnit Tool – Used for Test driven development Lets create a sample banking class named account which supports operations.
Programming with Visual C++ A short review of the process.
Hidden Markov Toolkit (HTK) Installation Fang-Hui Chu Department of Computer Science & Information Engineering National Taiwan Normal University.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
Computer Graphics with OpenGL
Writing a Run Time DLL The application loads the DLL using LoadLibrary() or LoadLibraryEx(). The standard search sequence is used by the operating system.
ARToolKit Settings The department of Computer Engineering Shin ho hwan.
Server Error in '/mapguide2008/mapviewerdwf' Application Compilation.
CS 470 Computer Graphic Getting Started with OpenGL.
Gianfranco Doretto April 19, CS 174 Discussion 2 TA Gianfranco Doretto.
Computer Graphics Lab 1 OpenGL.
1 How to Install OpenGL u Software running under Microsoft Windows makes extensive use of "dynamic link libraries." A dynamic link library (DLL) is a set.
CS 490 GRAPHICS COMPUTER Lecture 1: Introduction Computer Science Department 1.
What is GAC Repository containing all the assemblies of CLR Machine wide Assemblies shared by several applications Where CLR is installed C:\Windows\Microsoft.NET\assembly\GAC_MSIL.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Open project in Microsoft Visual Studio → build program in “Release” mode.
The Development Process Compilation. Compilation - Dr. Craig A. Struble 2 Programming Process Problem Solving Phase We will spend significant time on.
Windows Programming, C.-S. Shieh, KUAS EC, Chapter 9.5 I/O Communication.
Computer Graphics with OpenGL 교재 : [1] OPENGL 을 이용한 컴퓨터 그래픽스 5 판, 번역서, Edward Angel 저, 강영민 역, 사이텍미디어, 2009 참고서적 : [1] Computer Graphics with OpenGL, Donald.
1 Visual Studio 2005 Options for Debug Mode: C++, Fortran, Linker December 8, 2009 Intel Compiler Version
SimTK 1.0 Workshop Downloads Jack Middleton March 20, 2008.
Computer Graphics -practical- Lecture 6. (visual c++) open gl library To use open GL with VC++ we add these files:- 1)Glut.h C:\program files\ Microsoft.
Allow SQL remote connections
Development Environment Setup
INF230 Basics in C# Programming
Predefined Macros (examples)
MODULAR PROGRAMMING Many programs are too large to be developed by one person. programs are routinely developed by teams of programmers The linker program.
OpenGL project setup.
Getting Visual Studio Go to
Create Virtual Directory Windows 8 - IIS 8.5
Introduction to OpenGL
Extending SSRS with Custom Code
How to build 3D Slicer for Windows
Chapter 2 Setup.
Module 1: Getting Started
CSC235 - Visual Studio Getting Started.
גרפיקה ממוחשבת: מבוא ל-OpenGL
Visual Studio 2005 Options for Release Mode: C++, Fortran, Linker
1. Open Visual Studio 2008.
ms vısual studıo 2008-Introductıon TUTORIAL
Optimizations Module #4 of 6.
Computer Graphics, Lee Byung-Gook, Dongseo Univ.
Social Media And Global Computing Creating DLLs with Visual Studio
The department of Computer Engineering Shin ho hwan
Web programming and advanced development techniques
The visual studio window
Hidden Markov Toolkit (HTK) Installation
Understanding DLLs and headers, and libs… Jeff Chastine.
Presentation transcript:

Install for 64bit  Glui2.36.zip 을 다운로드  src  msvc  glui.sin 파일을 Visual Studio 2010 으로 열기  _glui library 를 선택후 빌드  빌드시 다음과 같은 오류가 발생하면 error C2252: an explicit instantiation of a template can only occur at namespace scope  아래 코드를 짤라내어 GLUIAPI GLUI_CommandLine 함수 선언 위쪽에 붙여넣기 #ifdef _MSC_VER template class GLUIAPI std::allocator ; template class GLUIAPI std::vector >; #endif  src  msvc  lib 폴더에 생성된 gluiXXd.lib 를 gluiXX.lib 로 이 름 변경

Install for 64bit Header  glut.h, glui.h  C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/include/GL Library  glut32.lib, glut64.lib, glui32.lib, glui64.lib  C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/lib DLL  glut32.dll, glut64.dll  C:/Windows/SysWOW64  C:/Windows/ System32

Installing GLUI using VC++ on windows To install the glui, the glut must be installed firstglut 1.Download glui library from 2.Under src directory u will find msvc directory, then open glui.sln file. 3.Convert the solution (if needed) 4.Converting the project solution into VC++ project 5.Select the _glui library and build the library 6.After building the library, the lib file (glui32d.lib), glui32d.lib – ‘d’ for debug, will be stored in the msvc\lib directory 7.Put the glui32.lib file into C:\Program Files\Microsoft Visual Studio 10.0\VC\lib directory 8.Put the glui.h file into C:\Program Files\Microsoft Visual Studio 10.0\VC\include directory

For VS 2010