From 7c2d2a5c8c9eae410dc3f856018083f476641082 Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Mon, 1 Mar 2010 23:45:07 +0000 Subject: [PATCH] Add note on new cmake build tool to INSTALL git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@562 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- INSTALL | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index ba017a52f..ed90de2f2 100644 --- a/INSTALL +++ b/INSTALL @@ -31,9 +31,18 @@ VS Solution and build for your preferred build target ... release-dll is usually the best choice. Adjust the runtime library to your needs, multithreaded-dll is preconfigured by default. -Unix: try running 'make' in the ./code dir. Or SCons from -./workspaces/SCons. Or CMAKE, from the CMakelists.txt. Choose whatever -buildtool you like most. +These solutions are currently hand-maintained, they copy all +the resulting binaries to ./bin/config-name at the moment. + +Unix & Family: + +CMake is now our preferred build tool. Run cmake with your +favourite build script generator from *here* and have fun. +If you use cmake only to get a makefile, run +'make' and 'make install' afterwards. + +Note that running make from ./code is deprecated, although there +is still a suitable makefile in it.