From 9dd82f90c299b2e05a36f44499f3f93af1fe9f57 Mon Sep 17 00:00:00 2001 From: kestred Date: Sat, 21 Dec 2013 19:45:12 -0700 Subject: [PATCH] cmake: Update readme to match current cmake variable naming scheme. --- cmake/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmake/README.md b/cmake/README.md index 0b2437f71b..5b46309b87 100644 --- a/cmake/README.md +++ b/cmake/README.md @@ -22,17 +22,18 @@ command-line interface; see `man cmake` for more details. In general, the config variable for a particular third party library is: ``` - USE_=True/False # Example: USE_JPEG + HAVE_=True/False # Example: USE_JPEG ``` -Optional features typically use the format: +Panda subpackage building is handled by: ``` - BUILD_=True/False # Example: BUILD_THREADS + BUILD_=True/False # Example: BUILD_DTOOL, BUILD_PANDA ``` -Configuration settings use more direct names: +Other configuration settings use more direct names (same names as in-source): ``` # Examples PANDA_DISTRIBUTOR="MyDistributor" DTOOL_INSTALL="/usr/local/panda" + LINMATH_ALIGN=On # ... etc ...