Skip to content
Snippets Groups Projects
Unverified Commit b9eff8b0 authored by Sayan Bandyopadhyay's avatar Sayan Bandyopadhyay Committed by GitHub
Browse files

fix: for issue #569, now use the guard to turn it off (#617)

parent f50dafc7
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,11 @@ if(ENABLE_CJSON_TEST)
endif()
#Create the uninstall target
add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${PROJECT_SOURCE_DIR}/library_config/uninstall.cmake")
option(ENABLE_CJSON_UNINSTALL "Enable creating uninstall target" ON)
if(ENABLE_CJSON_UNINSTALL)
add_custom_target(uninstall "${CMAKE_COMMAND}" -P
"${PROJECT_SOURCE_DIR}/library_config/uninstall.cmake")
endif()
# Enable the use of locales
option(ENABLE_LOCALES "Enable the use of locales" ON)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment