diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-03-27 19:52:17 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-03-27 19:52:17 -0700 |
commit | 0896ec499f7881443b93668824d21e34fbeb7da3 (patch) | |
tree | 6256988e6356cb3ee279451456fb294dad616b45 /cmake | |
parent | 5835b1637350a15cfbe0658a7253d01e69b3871f (diff) |
runtime: fix parallel builds, make -j working again
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Modules/GrSwig.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/GrSwig.cmake b/cmake/Modules/GrSwig.cmake index b9bf0bb0b9..b6af0584ec 100644 --- a/cmake/Modules/GrSwig.cmake +++ b/cmake/Modules/GrSwig.cmake @@ -111,7 +111,7 @@ macro(GR_SWIG_MAKE name) set(GR_SWIG_DOCS_TARGET_DEPS ${GR_SWIG_TARGET_DEPS}) GR_SWIG_MAKE_DOCS(${GR_SWIG_DOC_FILE} ${GR_SWIG_DOC_DIRS}) add_custom_target(${name}_swig_doc DEPENDS ${GR_SWIG_DOC_FILE}) - list(APPEND GR_SWIG_TARGET_DEPS ${name}_swig_doc) + list(APPEND GR_SWIG_TARGET_DEPS ${name}_swig_doc ${GR_RUNTIME_SWIG_DOC_FILE}) endif() #append additional include directories |