mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
Fixed link to libSDF (need librt) and lex generation.
This commit is contained in:
parent
9e3ab3b045
commit
dd5e51c09c
3 changed files with 2075 additions and 1 deletions
5
external/external_build.cmake
vendored
5
external/external_build.cmake
vendored
|
@ -334,6 +334,11 @@ IF(SDF_SUPPORT)
|
|||
)
|
||||
SET(LIBSDF_INCLUDE_PATH ${LIBSDF_PATH}/include)
|
||||
SET(LIBSDF_LIBRARY ${LIBSDF_PATH}/Objfiles/${LIBSDF_ARCH}/libsw.a)
|
||||
|
||||
find_library(RT_LIBRARY rt)
|
||||
IF (RT_LIBRARY)
|
||||
SET(LIBSDF_LIBRARY ${LIBSDF_LIBRARY} ${RT_LIBRARY})
|
||||
ENDIF (RT_LIBRARY)
|
||||
ENDIF(SDF_SUPPORT)
|
||||
|
||||
include_directories(${CMAKE_BINARY_DIR}/src
|
||||
|
|
2
external/libsdf/libSDF/GNUmakefile
vendored
2
external/libsdf/libSDF/GNUmakefile
vendored
|
@ -21,7 +21,7 @@ include $(treedir)/Make-common/Make.generic
|
|||
|
||||
%.c : %.l
|
||||
# commands to execute (built-in):
|
||||
-($(LEX.L) $< > y.lex.c; $(RM) $@; mv y.lex.c $@)
|
||||
-($(LEX) $(LEX.L) $<; mv -f lex.yy.c $@)
|
||||
|
||||
# Makedepends can't pick these up...
|
||||
$(objdir)/SDF-parse$(objsuf): SDF-private.h SDF-lex.c SDF-parse.c
|
||||
|
|
2069
external/libsdf/libSDF/SDF-lex.c
vendored
2069
external/libsdf/libSDF/SDF-lex.c
vendored
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue