浏览代码

Renamed CMake project to Assimp, as the semi-full name »AssetImporter« was used nowhere else.
Sorry, kimmi, if this was on purpose – feel free to revert.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@578 67173fc5-114c-0410-ac8e-9d2fd5bffc1f

klickverbot 15 年之前
父节点
当前提交
ed41aa8ce1
共有 4 个文件被更改,包括 10 次插入10 次删除
  1. 1 1
      CMakeLists.txt
  2. 3 3
      test/CMakeLists.txt
  3. 3 3
      tools/assimp_cmd/CMakeLists.txt
  4. 3 3
      tools/assimp_view/CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -1,5 +1,5 @@
 cmake_minimum_required( VERSION 2.6 )
-PROJECT( AssetImporter )
+PROJECT( Assimp )
 
 INCLUDE_DIRECTORIES( include )
 

+ 3 - 3
test/CMakeLists.txt

@@ -1,11 +1,11 @@
 INCLUDE_DIRECTORIES(
-	${AssetImporter_SOURCE_DIR}/include
-	${AssetImporter_SOURCE_DIR}/code
+	${Assimp_SOURCE_DIR}/include
+	${Assimp_SOURCE_DIR}/code
 )
 
 # Add the temporary output directories to the library path to make sure the
 # Assimp library can be found, even if it is not installed system-wide yet.
-LINK_DIRECTORIES( ${AssetImporter_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib )
+LINK_DIRECTORIES( ${Assimp_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib )
 
 SOURCE_GROUP( unit FILES 
 	unit/CCompilerTest.c

+ 3 - 3
tools/assimp_cmd/CMakeLists.txt

@@ -1,11 +1,11 @@
 # Make sure the compiler can find include files from our Hello library.
 include_directories (
-	${AssetImporter_SOURCE_DIR}/include
-	${AssetImporter_SOURCE_DIR}/code
+	${Assimp_SOURCE_DIR}/include
+	${Assimp_SOURCE_DIR}/code
 )
 
 # Make sure the linker can find the Hello library once it is built.
-link_directories (${AssetImporter_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib)
+link_directories (${Assimp_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib)
 
 # Add executable called "helloDemo" that is built from the source files
 # "demo.cxx" and "demo_b.cxx". The extensions are automatically found.

+ 3 - 3
tools/assimp_view/CMakeLists.txt

@@ -1,11 +1,11 @@
 # Make sure the compiler can find include files from our Hello library.
 include_directories (
-	${AssetImporter_SOURCE_DIR}/include
-	${AssetImporter_SOURCE_DIR}/code
+	${Assimp_SOURCE_DIR}/include
+	${Assimp_SOURCE_DIR}/code
 )
 
 # Make sure the linker can find the Hello library once it is built.
-link_directories (${AssetImporter_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib)
+link_directories (${Assimp_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib)
 
 # Add executable called "helloDemo" that is built from the source files
 # "demo.cxx" and "demo_b.cxx". The extensions are automatically found.