From f58503b20cb30131c3750612a0aaff9ecbc59a46 Mon Sep 17 00:00:00 2001 From: George Litos Date: Mon, 19 Oct 2020 11:55:37 +0300 Subject: [PATCH] Create INSTALL --- INSTALL | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 INSTALL diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..c10c7cc --- /dev/null +++ b/INSTALL @@ -0,0 +1,20 @@ +# Installation + +Tested on Windows 2010 with VS 2019 Express, +sources used : [Boost 1.7](boost_1_74_0.7z), Coin3D ans SoWin from git (check INSTALL) + + +## install Coin3D + +cmake -Hcoin -Bcoin_build -G "Visual Studio 16 2019" -DCMAKE_INSTALL_PREFIX=T:\Projects\Coin -DBOOST_ROOT=G:\Projects\Libs\boost_1_74_0 -DCOIN_BUILD_DOCUMENTATION=OFF + +cmake --build coin_build --target ALL_BUILD --config Release -- /nologo /verbosity:minimal /maxcpucount +cmake --build coin_build --target INSTALL --config Release -- /nologo /verbosity:minimal /maxcpucount + + +## install SoWin + +cmake -Hsowin -Bsowin_build -G "Visual Studio 16 2019" -DCMAKE_INSTALL_PREFIX=T:\Projects\Coin -DBOOST_ROOT=G:\Projects\Libs\boost_1_74_0 -DCOIN_BUILD_DOCUMENTATION=OFF -DCMAKE_PREFIX_PATH=T:/Projects/Coin/lib/cmake/Coin-4.0.1/ + +cmake --build sowin_build --target ALL_BUILD --config Release -- /nologo /verbosity:minimal /maxcpucount +cmake --build sowin_build --target INSTALL --config Release -- /nologo /verbosity:minimal /maxcpucount