From bba8edc392a4bdf74194154d28c7e0c337521e8d Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Fri, 15 Aug 2014 16:52:40 -0700 Subject: README.cmake: List more cmake options. Change-Id: I80b5c82f57c4de55aba9c7ee8044f565c9819d7e Reviewed-on: https://code.wireshark.org/review/3630 Reviewed-by: Gerald Combs --- README.cmake | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'README.cmake') diff --git a/README.cmake b/README.cmake index 004c1fb3fc..34d74dec4d 100644 --- a/README.cmake +++ b/README.cmake @@ -30,14 +30,30 @@ How to do out of tree build (Unix/Linux): cd .. 3) mkdir build 4) cd build -5) cmake ../ +5) cmake [options] ../ 6) make (or cmake --build .) 7) (as root) umask 0022 && make install Note 1: -in step 5), you may override the defaults for features: - cmake -DENABLE_CAP=OFF ../ - will disable the capabilities check. + In step 5) you may need to override the defaults for features. Common + options include: + + # Disable the POSIX capbabilities check + -DENABLE_CAP=OFF + + # Enable debugging symbols + -DCMAKE_BUILD_TYPE=Debug + + # Disable GTK+ 3 + -DENABLE_GTK3=OFF + + # Make ccache and clang work together + -DCMAKE_C_FLAGS='-Qunused-arguments' + + # Force Python path on Windows. May be needed if Cygwin's + # /usr/bin/python is present and is a symlink + # http://public.kitware.com/Bug/view.php?id=13818 + -DPYTHON_EXECUTABLE=c:/Python27/python Note 2: After running cmake, you can always run "make help" to see -- cgit v1.2.1