Browse Source

Fixed bad include path for v2-fixes modules

David Wimsey 11 years ago
parent
commit
6bdab16941
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Build/CMakeLists.txt

+ 1 - 1
Build/CMakeLists.txt

@@ -33,7 +33,7 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
 # Old versions of CMake need some updated Modules, but we don't want
 # to override newer versions of CMake which have working versions
 if(CMAKE_MAJOR_VERSION LESS 3)
-	list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/v2fixs)
+	list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/v2fixes)
 endif()
 
 set(CMAKE_DEBUG_POSTFIX  "_d")