From ed41aa8ce1da5f71c94c3fd71d2d4e23d2618cdf Mon Sep 17 00:00:00 2001 From: klickverbot Date: Wed, 3 Mar 2010 22:07:59 +0000 Subject: [PATCH] =?UTF-8?q?Renamed=20CMake=20project=20to=20Assimp,=20as?= =?UTF-8?q?=20the=20semi-full=20name=20=C2=BBAssetImporter=C2=AB=20was=20u?= =?UTF-8?q?sed=20nowhere=20else.=20Sorry,=20kimmi,=20if=20this=20was=20on?= =?UTF-8?q?=20purpose=20=E2=80=93=20feel=20free=20to=20revert.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@578 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- CMakeLists.txt | 2 +- test/CMakeLists.txt | 6 +++--- tools/assimp_cmd/CMakeLists.txt | 6 +++--- tools/assimp_view/CMakeLists.txt | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 181eb575c..79c666483 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required( VERSION 2.6 ) -PROJECT( AssetImporter ) +PROJECT( Assimp ) INCLUDE_DIRECTORIES( include ) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 194d8fe3a..02c043783 100644 --- a/test/CMakeLists.txt +++ b/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 diff --git a/tools/assimp_cmd/CMakeLists.txt b/tools/assimp_cmd/CMakeLists.txt index 0a379f680..ba42a3373 100644 --- a/tools/assimp_cmd/CMakeLists.txt +++ b/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. diff --git a/tools/assimp_view/CMakeLists.txt b/tools/assimp_view/CMakeLists.txt index 5162c137e..6848963a9 100644 --- a/tools/assimp_view/CMakeLists.txt +++ b/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.