This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.15) | |
| project(CMakeListAppendDemo) | |
| # ============================================================================= | |
| # COMPREHENSIVE DEMONSTRATION: foreach vs direct list(APPEND) | |
| # ============================================================================= | |
| # | |
| # This file demonstrates why: | |
| # foreach(ARG ${PARSE_TIDY_ARGS}) | |
| # list(APPEND CLANG_TIDY_EXTRA_ARGS "${ARG}") |