Skip to content

Commit

Permalink
update BUILDING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
okapies committed Oct 3, 2018
1 parent 9d91a14 commit 6a0fb84
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,9 @@ Download and unzip https://github.com/protocolbuffers/protobuf/releases/download

```
cd protobuf-3.6.1/cmake
mdir build
mkdir build
cd build
cmake .. -G "Visual Studio 14" -A x64 -Dprotobuf_MSVC_STATIC_RUNTIME=OFF -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=(CMake_Install_Dir)
cmake --build . --config Debug --target install
cmake --build . --config Release --target install
cd ../../..
```
Expand All @@ -67,10 +66,9 @@ git clone https://github.com/intel/mkl-dnn.git
cd mkl-dnn/scripts
.\prepare_mkl.bat
cd ..
mdir build
mkdir build
cd build
cmake .. -G "Visual Studio 14 Win64" -DCMAKE_INSTALL_PREFIX=(CMake_Install_Dir)
cmake --build . --config Debug --target install
cmake --build . --config Release --target install
cd ../..
```
Expand Down Expand Up @@ -177,10 +175,9 @@ Please replace `(CMake_Install_Dir)` in the following with your working director
```
git clone https://github.com/pfnet-research/menoh.git
cd menoh
mdir build
mkdir build
cd build
cmake .. -G "Visual Studio 14 Win64" -DCMAKE_PREFIX_PATH=CMake_Install_Dir) -DCMAKE_INSTALL_PREFIX=CMake_Install_Dir) -DENABLE_TEST=OFF -DENABLE_BENCHMARK=OFF -DENABLE_EXAMPLE=OFF -DENABLE_TOOL=OFF
cmake --build . --config Debug --target install
cmake .. -G "Visual Studio 14 Win64" -DCMAKE_PREFIX_PATH=(CMake_Install_Dir) -DCMAKE_INSTALL_PREFIX=(CMake_Install_Dir) -DENABLE_TEST=OFF -DENABLE_BENCHMARK=OFF -DENABLE_EXAMPLE=OFF
cmake --build . --config Release --target install
```

Expand Down

0 comments on commit 6a0fb84

Please sign in to comment.