소스 검색

cmake: Update readme to match current cmake variable naming scheme.

kestred 12 년 전
부모
커밋
9dd82f90c2
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      cmake/README.md

+ 5 - 4
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:
 In general, the config variable for a particular third party library is:
 ```
 ```
-	USE_<LIBRARY>=True/False   # Example: USE_JPEG
+	HAVE_<LIBRARY>=True/False   # Example: USE_JPEG
 ```
 ```
-Optional features typically use the format:
+Panda subpackage building is handled by:
 ```
 ```
-	BUILD_<FEATURE>=True/False   # Example: BUILD_THREADS
+	BUILD_<SUBPACKAGE>=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
 	# Examples
 	PANDA_DISTRIBUTOR="MyDistributor"
 	PANDA_DISTRIBUTOR="MyDistributor"
 	DTOOL_INSTALL="/usr/local/panda"
 	DTOOL_INSTALL="/usr/local/panda"
+	LINMATH_ALIGN=On
 
 
 	# ... etc ...
 	# ... etc ...