aboutsummaryrefslogtreecommitdiffstats
path: root/README.cmake
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2013-10-05 08:02:17 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2013-10-05 08:02:17 +0000
commitd7ab7a8610207c97de27ca770005f0db5958de77 (patch)
tree94db06549f9564c7496b88688a55430afe386de9 /README.cmake
parent83d4da3fb697514d0930aef6113e334fc0b23e9a (diff)
Updated instructions for Windows CMake usage when build a Visual Studio solution.
svn path=/trunk/; revision=52375
Diffstat (limited to 'README.cmake')
-rw-r--r--README.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.cmake b/README.cmake
index 314f8e7311..951daf23f6 100644
--- a/README.cmake
+++ b/README.cmake
@@ -62,12 +62,15 @@ How to do out of tree build (Win32/64):
Steps 1-9
1a) Set WIRESHARK_BASE_DIR=c:\wireshark (the parent directory of the
library directory).
+1b) set WIRESHARK_TARGET_PLATFORM=win32 (or win64)
2) Install cmake
3) mkdir c:\wireshark\build
4) cd c:\wireshark\build
5) cmake -G "NMake Makefiles" .. (if the sources are in c:\wireshark)
+5a) cmake path\to\sources (this will build for the latest Visual Studio version found)
6) nmake VERBOSE=1 (or cmake --build . -- VERBOSE=1 )
-7) (as root) umask 0022 && make install
+6a) Wireshark.sln (this will run up Visual Studio with the cmake built solution
+7)
Why cmake?
==========