fourthskyinteractive / oglshell

Automatically exported from code.google.com/p/oglshell
0 stars 0 forks source link

Build system? #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Is it in plan adding something like Makefiles, atleast?
Installing IDE like eclipseSDK just to build something seems to be bit
overkiller... I'am evaluating possibility of using your library. If you
wish i could make something relatively sane (as possible with autocrap),
probably I will have to do it anyway for me. However, I can't guarantee to
maintain it in future, graphics programming is not really main domain.

PS. Sorry for contacting this way with this issue, but couldn't find any
other way.

Original issue reported on code.google.com by piotr....@gmail.com on 5 Nov 2008 at 10:04

GoogleCodeExporter commented 9 years ago
Unfortunately I'am not familiar with Makefile script. I'am Windows programmer 
and
primarily using MS Visual Studio for my projects. Yes, makefile seems only 
option out
of MSVS world, but it's require some time to learn script language. I believe,
peoples, who want to use this library, can further extend it capabilities, write
makefiles, make port on MacOS X etc. It is an opensource project, so any help is
appreciated!

My e-mail is written in the header of every h/cpp file :)

Original comment by victor.c...@gmail.com on 6 Nov 2008 at 8:02

GoogleCodeExporter commented 9 years ago
Can i propose premake4 as an universal buildsystem ?
Writing its scripts can be as easy as :

project("oglshell_math")
language "C++"
kind "StaticLib"
files { "*.cpp", "*.h" }

It outputs Visual Studio, makefiles, Codeblocks files and if one cares to supply
other templates, also other build files.

Original comment by kaidok...@gmail.com on 1 Aug 2009 at 11:16