CMUtil/src/CMakeLists.txt

12 lines
281 B
CMake
Raw Normal View History

2019-11-29 18:20:19 +08:00
option(CM_UTIL_SUPPORT_XML "Build XML Parse module." ON)
2019-11-29 11:58:31 +08:00
2019-11-29 18:20:19 +08:00
if(CM_UTIL_SUPPORT_XML)
add_subdirectory(xml)
endif(CM_UTIL_SUPPORT_XML)
option(CM_UTIL_SUPPORT_JSON "Build JSON Parse/make module." ON)
if(CM_UTIL_SUPPORT_JSON)
add_subdirectory(json)
endif(CM_UTIL_SUPPORT_JSON)