diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cd.def | 11 | ||||
-rw-r--r-- | src/cd_ftgl.def | 2 | ||||
-rw-r--r-- | src/cd_ftgl.mak | 4 | ||||
-rw-r--r-- | src/cdgl.mak | 2 |
4 files changed, 17 insertions, 2 deletions
@@ -399,3 +399,14 @@ EXPORTS cdInitContextPlusList cdGetContextPlus + + cdfSimPolyPath + cdSimArc + cdSimPolyPath + cdfRotatePoint + cdSimSector + cdfSimArc + cdfSimSector + cdfSimChord + cdSimChord +
\ No newline at end of file diff --git a/src/cd_ftgl.def b/src/cd_ftgl.def new file mode 100644 index 0000000..0c811a9 --- /dev/null +++ b/src/cd_ftgl.def @@ -0,0 +1,2 @@ +EXPORTS +
\ No newline at end of file diff --git a/src/cd_ftgl.mak b/src/cd_ftgl.mak index a8b56d0..94fe5cd 100644 --- a/src/cd_ftgl.mak +++ b/src/cd_ftgl.mak @@ -2,6 +2,8 @@ PROJNAME = cd LIBNAME = ftgl OPT = YES +DEF_FILE = cd_ftgl.def + ftglyph_sources = \ FTGlyph/FTGlyph.cpp \ FTGlyph/FTGlyphGlue.cpp \ @@ -48,10 +50,10 @@ INCLUDES := ftgl freetype2 DEFINES = FTGL_LIBRARY_STATIC USE_OPENGL = Yes LIBS = freetype +LDIR = ../lib/$(TEC_UNAME) ifneq ($(findstring dll, $(TEC_UNAME)), ) DEFINES = FTGL_LIBRARY - SRC += cd_ftgl.rc endif ifneq ($(findstring Win, $(TEC_SYSNAME)), ) diff --git a/src/cdgl.mak b/src/cdgl.mak index cd2c369..21a9b88 100644 --- a/src/cdgl.mak +++ b/src/cdgl.mak @@ -7,7 +7,7 @@ SRC = drv/cdgl.c INCLUDES = . sim ftgl freetype2 LIBS = ftgl -ifneq ($(findstring Win, $(TEC_SYSNAME)), ) +ifeq ($(findstring Win, $(TEC_SYSNAME)), ) LIBS += iconv endif |