lazarus-ccr/components/nvidia-widgets/config.inc
blaszijk 00e2a4261c moved config file, one level down
fixed build system (linked all fpmake files together)



git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2258 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-01-12 22:34:57 +00:00

22 lines
476 B
PHP

type
//add more here
NV_CONTEXT = (GLUT);
NV_PAINTER = (GL);
NV_FONT = (GLFREETYPE, GLUTBITMAP);
const
NV_DEBUG = True;
NV_DEBUG_FLAGS: array [0..2] of string = ('-g', '-gl', '-gh');
NV_PROFILE = False;
NV_PROFILE_FLAGS: array [0..0] of string = ('-pg');
var
//choose the context
NV_ACTIVE_CONTEXT: NV_CONTEXT = GLUT;
//choose the painter
NV_ACTIVE_PAINTER: NV_PAINTER = GL;
//choose the font
NV_ACTIVE_FONT: NV_FONT = GLFREETYPE;