update: add cmake_mimimum_required statement to each cmake file
for consistencypull/274/head
parent
d5d9e59949
commit
f6925db3d8
|
@ -4,6 +4,7 @@
|
|||
# 3) Add libassimp using the file lists (eliminates duplication of file names between
|
||||
# source groups and library command)
|
||||
#
|
||||
cmake_minimum_required( VERSION 2.6 )
|
||||
SET( HEADER_PATH ../include/assimp )
|
||||
|
||||
SET( COMPILER_HEADERS
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
cmake_minimum_required( VERSION 2.6 )
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${Assimp_SOURCE_DIR}/include
|
||||
${Assimp_SOURCE_DIR}/code
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
cmake_minimum_required( VERSION 2.6 )
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${Assimp_SOURCE_DIR}/include
|
||||
${Assimp_SOURCE_DIR}/code
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
FIND_PACKAGE(DirectX REQUIRED)
|
||||
cmake_minimum_required( VERSION 2.6 )
|
||||
|
||||
FIND_PACKAGE(DirectX REQUIRED)
|
||||
|
||||
INCLUDE_DIRECTORIES (
|
||||
${Assimp_SOURCE_DIR}/include
|
||||
|
|
Loading…
Reference in New Issue