Click here to Skip to main content
15,879,095 members
Articles / Desktop Programming / MFC

Writing a Platform and GUI Toolkit Independent OpenGL Class

Rate me:
Please Sign up or sign in to vote.
4.92/5 (33 votes)
1 Nov 2010CPOL13 min read 96.5K   7.5K   89  
Article showing how to write OS and GUI toolkit portable OpenGL view class
#! /bin/sh

# Copyright Sharjith N
# sharjith@gmail.com
# software provided as is, use at your own risk

# build the main library
cd GLView
if [ ! -f "configure" ]
then
autoreconf --install
fi
./configure --prefix=$PWD/../
make install
cd ..

# GTK Sample
cd GLViewGTKApp
if [ ! -f "configure" ]
then
autoreconf --install
fi
./configure --prefix=$PWD/../
make install
cd ..

# Motif Sample
cd GLViewMotifApp
if [ ! -f "configure" ]
then
autoreconf --install
fi
./configure --prefix=$PWD/../
make install
cd ..

# Qt Sample
cd GLViewQtApp
if [ ! -f "Makefile" ]
then
qmake-qt4
fi
make
cd ..


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Product Manager Mahindra & Mahindra
India India
Sharjith is a Mechanical Engineer with strong passion for Automobiles, Aircrafts and Software development.

Comments and Discussions