Making the cmake more verbose so we can figure out what is happening.

This commit is contained in:
Daniel Lemire
2020-06-24 15:44:22 -04:00
parent cb8a9ef2c0
commit f6e9a8eee4
4 changed files with 12 additions and 4 deletions
+3
View File
@@ -1,6 +1,9 @@
if(TARGET cxxopts) # we only build the tools if cxxopts is available
message(STATUS "We have cxxopts as a dependency and we are buiding the tools (e.g., json2json).")
link_libraries(simdjson simdjson-internal-flags simdjson-windows-headers cxxopts)
add_executable(json2json json2json.cpp)
add_executable(jsonstats jsonstats.cpp)
add_executable(minify minify.cpp)
else()
message(STATUS "We are missing cxxopts as a dependency so the tools (e.g., json2json) are omitted.")
endif()