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_policy(VERSION ${CMAKE_VERSION}) | |
| function(tokenize filename out_namespace) | |
| set(tokens_count 0) | |
| set(line 1) | |
| set(column 1) | |
| macro(emit_token_and_advance type) |
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_policy(VERSION ${CMAKE_VERSION}) | |
| function(lexer filename out_namespace) | |
| set(tokens_count 0) | |
| set(line 1) | |
| set(column 1) | |
| macro(fill_buffer_from_file_content) |
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
| language: cpp | |
| install: | |
| - which xcrun | |
| script: | |
| - xcrun --help | |
| - xcrun --show-sdk-path || true | |
| - xcrun --show-sdk-version || true |
OlderNewer