-
Notifications
You must be signed in to change notification settings - Fork 863
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] Fixed compile issues and warnings for iOS platform (#2852).
Fixed cmake policy CMP0153 issue: exec_program is deprecated since version 3.0, CMake >= 3.28 prefer that this command never be called and the NEW behavior for this policy is to issue a FATAL_ERROR when the command is called. Fixed cmake policy CMP0054 issue, Only interpret if() arguments as variables or keywords when unquoted Update .gitignore: ignore files generated by clion and cmake. CMake VERSION_GREATER_EQUAL comparator is not supported on version less than 3.7.
- Loading branch information
Showing
3 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,3 +43,7 @@ vcpkg/ | |
|
||
# LSP | ||
compile_commands.json | ||
|
||
# ignore files generated by clion and cmake | ||
.idea/ | ||
cmake-build-debug/ |
This file contains 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
This file contains 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