summaryrefslogtreecommitdiff
path: root/README.cmake
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-10-04 23:46:08 +0000
committerJörg Mayer <jmayer@loplof.de>2013-10-04 23:46:08 +0000
commit83d4da3fb697514d0930aef6113e334fc0b23e9a (patch)
tree609ce01467a051a63f5b2cc0d38e1eafe9c3e970 /README.cmake
parent150fb747a676d0e13a87bc4fa8917677800435ee (diff)
downloadwireshark-83d4da3fb697514d0930aef6113e334fc0b23e9a.tar.gz
Document a little progress wrt cmake windows builds.
svn path=/trunk/; revision=52374
Diffstat (limited to 'README.cmake')
-rw-r--r--README.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.cmake b/README.cmake
index 800d733b9a..314f8e7311 100644
--- a/README.cmake
+++ b/README.cmake
@@ -55,7 +55,7 @@ Note 4:
To get predictable results please set umask explicitly.
How to do out of tree build (Win32/64):
-[This is early alpha and the build will most likely die during the cmake
+[This is early alpha and while the build no longer always dies during the cmake
stage - don't waste your time testing unless you are willing to fix things
yourself]
1) Follow http://www.wireshark.org/docs/wsdg_html_chunked/ChSetupWin32.html
@@ -66,7 +66,7 @@ How to do out of tree build (Win32/64):
3) mkdir c:\wireshark\build
4) cd c:\wireshark\build
5) cmake -G "NMake Makefiles" .. (if the sources are in c:\wireshark)
-6) nmake (or cmake --build .)
+6) nmake VERBOSE=1 (or cmake --build . -- VERBOSE=1 )
7) (as root) umask 0022 && make install
Why cmake?