Changeset 3244
- Timestamp:
- Jun 28, 2009, 11:23:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/cmake/GenerateToluaBindings.cmake
r3196 r3244 53 53 ENDIF() 54 54 55 # Create temporary package file 55 # Create temporary package file and implicit dependencies 56 56 FILE(REMOVE ${_tolua_pkgfile}) 57 57 FOREACH(_tolua_inputfile ${_tolua_inputfiles}) 58 58 FILE(APPEND ${_tolua_pkgfile} "\$cfile \"${_tolua_inputfile}\"\n") 59 LIST(APPEND _implicit_dependencies CXX ${_tolua_inputfile}) 59 60 ENDFOREACH(_tolua_inputfile) 60 61 … … 67 68 -s ${TOLUA_PARSER_SOURCE} 68 69 ${_tolua_pkgfile} 69 DEPENDS 70 IMPLICIT_DEPENDS CXX ${_tolua_inputfiles}71 WORKING_DIRECTORY 70 DEPENDS ${TOLUA_PARSER_DEPENDENCIES} 71 IMPLICIT_DEPENDS ${_implicit_dependencies} 72 WORKING_DIRECTORY ${ORXONOX_RUNTIME_LIBRARY_DIRECTORY} 72 73 COMMENT "Generating tolua bind files for package ${_tolua_package}" 73 74 )
Note: See TracChangeset
for help on using the changeset viewer.