Ignore all non syntax error warnings from lua bindings.

luabind is auto generated so we don't want to check the warnings from
this library, just check to be sure it won't cause a compile issue.
This commit is contained in:
Arthur Ice 2014-04-10 16:21:23 -07:00
parent 24369f4110
commit 78423ebcd0

View File

@ -28,7 +28,7 @@ ADD_LIBRARY(luabind ${lb_sources} ${lb_headers})
IF(UNIX)
ADD_DEFINITIONS(-fPIC)
ADD_DEFINITIONS(-fPIC -fsyntax-only)
ENDIF(UNIX)
SET(LIBRARY_OUTPUT_PATH ../Bin)