From d1631bec3f761f2af1a71702344c1cfed6e6cceb Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Sun, 19 Dec 2010 14:02:43 +0000 Subject: [PATCH] Build fix for linux. svnrev.h was not found when compiling OCLTextureDecoder.cpp as that include directory was only used in Core/Common. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6610 8ced0084-cf51-0410-be5f-012b33b47a6e --- CMakeLists.txt | 2 ++ Source/Core/Common/CMakeLists.txt | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 989150af51..7fede73154 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -343,6 +343,8 @@ endif(NOT DISABLE_WX) # file(WRITE ${PROJECT_BINARY_DIR}/Source/Core/Common/Src/svnrev.h "#define SVN_REV_STR \"" ${DOLPHIN_WC_REVISION} "-" ${CMAKE_BUILD_TYPE} "\"\n") +include_directories("${PROJECT_BINARY_DIR}/Source/Core/Common/Src") + ######################################## # Start compiling our code diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index d9fd43255f..61f6fded60 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -39,8 +39,6 @@ if(WIN32) set(SRCS ${SRCS} Src/ExtendedTrace.cpp Src/stdafx.cpp) endif(WIN32) -include_directories("${PROJECT_BINARY_DIR}/Source/Core/Common/Src") - add_library(common STATIC ${SRCS}) target_link_libraries(common ${CMAKE_DL_LIBS}) if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")