lidavidm commented on code in PR #13859: URL: https://github.com/apache/arrow/pull/13859#discussion_r943940904
########## cpp/examples/tutorial_examples/CMakeLists.txt: ########## @@ -0,0 +1,20 @@ +project(MyExample) +set(CMAKE_CXX_STANDARD 11) +set(BUILD_WARNING_LEVEL CHECKIN) Review Comment: The option is meant for people building Arrow itself, not using Arrow, and is a CMake flag like everything else (we should maybe write it out as `-DBUILD_WARNING_LEVEL=CHECKIN`) and note that it's set for you so there's usually no need to set it yourself If you want this to be a standalone CMakeLists, but also enable warnings, you'll need to use CMake's own features to add the warning flags -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
