From 48b7c983da4b6e5e58326fb6aedbdde8f8cd980c Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Thu, 26 Jun 2014 14:09:45 -0400 Subject: [PATCH] Fix parallel CMake builds failing due to missing buildinfo.h Reviewed in #blendercoders by ideasman42 --- source/creator/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index f263043b435..8deadb9c7b7 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -177,6 +177,7 @@ if(WITH_BUILDINFO) # make an object library so can load with it in tests add_library(buildinfoobj OBJECT buildinfo.c) + add_dependencies(buildinfoobj buildinfo) endif() # message(STATUS "Configuring blender")