This commit is contained in:
Ian Bell
2014-11-20 18:40:30 -05:00

View File

@@ -66,15 +66,15 @@ The instructions here are for a 64-bit windows system that will compile both 64-
# Build the MSVC project using CMake
cmake ../.. -G "Visual Studio 10" -DCOOLPROP_32BIT_STDCALL_SHARED_LIBRARY=ON
# Make the shared library
cmake --build . -C Release
cmake --build . --config Release
cd ../..
# Make a build folder for the 64-bit DLL
mkdir build/64bit && cd build/64bit
# Build the MSVC project using CMake
cmake ../.. -G "Visual Studio 10 Win64" -DCOOLPROP_64BIT_SHARED_LIBRARY=ON
# Make the shared library
cmake --build . -C Release
cmake --build . --config Release
cd ../..
# Copy the generated DLL
copy build\32bit__stdcall\CoolProp.dll c:\CoolProp
copy build\64bit\CoolProp.dll c:\CoolProp
copy build\64bit\CoolProp.dll c:\CoolProp