Skip to content

Commit d2c577d

Browse files
testing
1 parent 6a2bf1c commit d2c577d

33 files changed

+226
-213
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.idea/misc.xml

-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Class_Overloading_by_Tanner_Davison/main.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#include <limits>
32
#include "stdafx.h"
43
#include "Base.h"
@@ -12,7 +11,7 @@
1211
#include <utility>
1312
#include <typeinfo>
1413
#include <cstdio>
15-
14+
//test
1615
template <typename T>
1716
T addArrayValues(const vector<T>& arrayP) {
1817
T temp = 0;

cmake-build-debug/.cmake/api/v1/reply/cache-v2-4d706f5ea7e1826f4a56.json renamed to cmake-build-debug/.cmake/api/v1/reply/cache-v2-8112d148c71391d0f733.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@
759759
}
760760
],
761761
"type" : "STRING",
762-
"value" : ""
762+
"value" : "15.0"
763763
},
764764
{
765765
"name" : "CMAKE_OSX_SYSROOT",
@@ -771,7 +771,7 @@
771771
}
772772
],
773773
"type" : "PATH",
774-
"value" : "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk"
774+
"value" : "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk"
775775
},
776776
{
777777
"name" : "CMAKE_PLATFORM_INFO_INITIALIZED",

cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-e122fe204ca23378d0a2.json renamed to cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-256fd46d456fe9ffb482.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
{
4040
"directoryIndex" : 0,
4141
"id" : "my_executable::@6890427a1f51a3e7e1df",
42-
"jsonFile" : "target-my_executable-Debug-720e02815348ee36bbfe.json",
42+
"jsonFile" : "target-my_executable-Debug-b153b23ab0804db349a8.json",
4343
"name" : "my_executable",
4444
"projectIndex" : 0
4545
}

cmake-build-debug/.cmake/api/v1/reply/index-2024-10-16T01-23-23-0405.json renamed to cmake-build-debug/.cmake/api/v1/reply/index-2024-11-19T02-45-37-0304.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"objects" :
2727
[
2828
{
29-
"jsonFile" : "codemodel-v2-e122fe204ca23378d0a2.json",
29+
"jsonFile" : "codemodel-v2-256fd46d456fe9ffb482.json",
3030
"kind" : "codemodel",
3131
"version" :
3232
{
@@ -35,7 +35,7 @@
3535
}
3636
},
3737
{
38-
"jsonFile" : "cache-v2-4d706f5ea7e1826f4a56.json",
38+
"jsonFile" : "cache-v2-8112d148c71391d0f733.json",
3939
"kind" : "cache",
4040
"version" :
4141
{
@@ -53,7 +53,7 @@
5353
}
5454
},
5555
{
56-
"jsonFile" : "toolchains-v1-bb98b21159e1e8803146.json",
56+
"jsonFile" : "toolchains-v1-6b9824543f81a3a90126.json",
5757
"kind" : "toolchains",
5858
"version" :
5959
{
@@ -66,7 +66,7 @@
6666
{
6767
"cache-v2" :
6868
{
69-
"jsonFile" : "cache-v2-4d706f5ea7e1826f4a56.json",
69+
"jsonFile" : "cache-v2-8112d148c71391d0f733.json",
7070
"kind" : "cache",
7171
"version" :
7272
{
@@ -86,7 +86,7 @@
8686
},
8787
"codemodel-v2" :
8888
{
89-
"jsonFile" : "codemodel-v2-e122fe204ca23378d0a2.json",
89+
"jsonFile" : "codemodel-v2-256fd46d456fe9ffb482.json",
9090
"kind" : "codemodel",
9191
"version" :
9292
{
@@ -96,7 +96,7 @@
9696
},
9797
"toolchains-v1" :
9898
{
99-
"jsonFile" : "toolchains-v1-bb98b21159e1e8803146.json",
99+
"jsonFile" : "toolchains-v1-6b9824543f81a3a90126.json",
100100
"kind" : "toolchains",
101101
"version" :
102102
{

cmake-build-debug/.cmake/api/v1/reply/target-my_executable-Debug-720e02815348ee36bbfe.json renamed to cmake-build-debug/.cmake/api/v1/reply/target-my_executable-Debug-b153b23ab0804db349a8.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"compileCommandFragments" :
4343
[
4444
{
45-
"fragment" : "-g -std=gnu++20 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -fcolor-diagnostics"
45+
"fragment" : "-g -std=gnu++20 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -mmacosx-version-min=15.0 -fcolor-diagnostics"
4646
},
4747
{
4848
"fragment" : "-Winvalid-pch -Xclang -emit-pch -Xclang -include -Xclang /Users/tanner.davison/CLionProjects/Overloaded-Classes-by_Tanner_Davison/cmake-build-debug/CMakeFiles/my_executable.dir/cmake_pch_arm64.hxx -x c++-header"
@@ -73,7 +73,7 @@
7373
"compileCommandFragments" :
7474
[
7575
{
76-
"fragment" : "-g -std=gnu++20 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk -fcolor-diagnostics"
76+
"fragment" : "-g -std=gnu++20 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -mmacosx-version-min=15.0 -fcolor-diagnostics"
7777
},
7878
{
7979
"fragment" : "-Winvalid-pch -Xarch_arm64 -include/Users/tanner.davison/CLionProjects/Overloaded-Classes-by_Tanner_Davison/cmake-build-debug/CMakeFiles/my_executable.dir/cmake_pch_arm64.hxx"

cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bb98b21159e1e8803146.json renamed to cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-6b9824543f81a3a90126.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
{
1111
"includeDirectories" :
1212
[
13-
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include",
14-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include",
13+
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include",
14+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/include",
1515
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"
1616
],
1717
"linkDirectories" :
1818
[
19-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib",
20-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib/swift"
19+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib",
20+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib/swift"
2121
],
2222
"linkFrameworkDirectories" :
2323
[
24-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks"
24+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/System/Library/Frameworks"
2525
],
2626
"linkLibraries" : []
2727
},
2828
"path" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc",
29-
"version" : "15.0.0.15000309"
29+
"version" : "16.0.0.16000026"
3030
},
3131
"language" : "C",
3232
"sourceFileExtensions" :
@@ -43,27 +43,27 @@
4343
{
4444
"includeDirectories" :
4545
[
46-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1",
47-
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include",
48-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include",
46+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/include/c++/v1",
47+
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include",
48+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/include",
4949
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"
5050
],
5151
"linkDirectories" :
5252
[
53-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib",
54-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib/swift"
53+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib",
54+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib/swift"
5555
],
5656
"linkFrameworkDirectories" :
5757
[
58-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks"
58+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/System/Library/Frameworks"
5959
],
6060
"linkLibraries" :
6161
[
6262
"c++"
6363
]
6464
},
6565
"path" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++",
66-
"version" : "15.0.0.15000309"
66+
"version" : "16.0.0.16000026"
6767
},
6868
"language" : "CXX",
6969
"sourceFileExtensions" :

cmake-build-debug/.ninja_deps

210 KB
Binary file not shown.

cmake-build-debug/.ninja_log

+28-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,29 @@
11
# ninja log v6
2-
5 421 1725318212714911107 CMakeFiles/my_executable.dir/cmake_pch_arm64.hxx.pch 1662b81d3facd19a
3-
422 489 1725318213131097169 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/ArrayList.cpp.o aecf48cf518ed406
4-
422 502 1725318213131308420 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Entity.cpp.o c405f1487a0c471e
5-
5 55 1725318447036874588 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/main.cpp.o 562cc44d1ce743d9
6-
422 483 1725318213131501129 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Vector3D.cpp.o e74817e823eb7537
7-
422 492 1725318213131207169 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Enemies.cpp.o f42fe6368d424826
8-
422 488 1725318213131405212 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Vector2D.cpp.o 592fb317aeaece78
9-
422 506 1725318213131692880 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Family.cpp.o de725f36a3d1a25d
10-
55 90 1725318447087629481 my_executable 47a1e0f2778a5af5
2+
4 458 1729041862485903228 CMakeFiles/my_executable.dir/cmake_pch_arm64.hxx.pch 1662b81d3facd19a
3+
458 528 1729041862940341179 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/ArrayList.cpp.o aecf48cf518ed406
4+
459 522 1729041862940841183 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Vector3D.cpp.o e74817e823eb7537
5+
458 550 1729041862940077843 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/main.cpp.o 562cc44d1ce743d9
6+
459 525 1729041862940477638 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Enemies.cpp.o f42fe6368d424826
7+
459 548 1729041862940677140 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Vector2D.cpp.o 592fb317aeaece78
8+
459 570 1729041862940969143 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Family.cpp.o de725f36a3d1a25d
9+
459 538 1729041862941161644 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Base.cpp.o 217d38c82f79a43a
10+
460 539 1729041862941579482 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/PlayerCharacter.cpp.o aed72d251faabcc7
11+
459 555 1729041862940580097 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Entity.cpp.o c405f1487a0c471e
12+
460 535 1729041862941398563 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Character.cpp.o 53731bd64581a358
13+
584 608 1729041863065433680 my_executable 330761aa003e1d4b
14+
525 583 1729041863006602422 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/InterfaceDerived.cpp.o b0a87575f17a1a33
15+
522 584 1729041863003740395 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Derived.cpp.o 259a789521f5c281
16+
1 450 1731984349465112159 CMakeFiles/my_executable.dir/cmake_pch_arm64.hxx.pch 636e284fd20c7f58
17+
452 522 1731984349915697640 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Vector3D.cpp.o 770f1db6ff771de4
18+
452 526 1731984349915604890 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Vector2D.cpp.o 3da1a9615edcc3d
19+
452 530 1731984349915901641 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Base.cpp.o bd5d9aedc9c8c89d
20+
452 531 1731984349916000016 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Character.cpp.o ce4c86dc22947c08
21+
452 532 1731984349916109891 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/PlayerCharacter.cpp.o b09d6c23d484be46
22+
451 534 1731984349915417682 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Enemies.cpp.o 788fd925e6445a56
23+
451 539 1731984349915299723 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/ArrayList.cpp.o 1fc9607d5519906e
24+
451 551 1731984349915082765 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/main.cpp.o db4a35b7cbcbdafb
25+
452 553 1731984349915515474 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Entity.cpp.o 79b2fdba7689d423
26+
452 566 1731984349915794849 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Family.cpp.o 2e62ad196eb06f08
27+
522 581 1731984349986273523 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/Derived.cpp.o c53353a9ebe904d7
28+
526 584 1731984349990416026 CMakeFiles/my_executable.dir/Class_Overloading_by_Tanner_Davison/InterfaceDerived.cpp.o 27eca670883ce014
29+
584 610 1731984350047903149 my_executable 81bf4b444c2b03cd

cmake-build-debug/CMakeCache.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ CMAKE_OSX_ARCHITECTURES:STRING=
133133

134134
//Minimum OS X version to target for deployment (at runtime); newer
135135
// APIs weak linked. Set to empty string for default value.
136-
CMAKE_OSX_DEPLOYMENT_TARGET:STRING=
136+
CMAKE_OSX_DEPLOYMENT_TARGET:STRING=15.0
137137

138138
//The product will be built against the headers and libraries located
139139
// inside the indicated SDK.
140-
CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk
140+
CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk
141141

142142
//Value Computed by CMake
143143
CMAKE_PROJECT_DESCRIPTION:STATIC=

cmake-build-debug/CMakeFiles/3.29.6/CMakeCCompiler.cmake

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc")
22
set(CMAKE_C_COMPILER_ARG1 "")
33
set(CMAKE_C_COMPILER_ID "AppleClang")
4-
set(CMAKE_C_COMPILER_VERSION "15.0.0.15000309")
4+
set(CMAKE_C_COMPILER_VERSION "16.0.0.16000026")
55
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
66
set(CMAKE_C_COMPILER_WRAPPER "")
77
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
@@ -30,7 +30,7 @@ set(CMAKE_LINKER_LINK "")
3030
set(CMAKE_LINKER_LLD "")
3131
set(CMAKE_C_COMPILER_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
3232
set(CMAKE_C_COMPILER_LINKER_ID "AppleClang")
33-
set(CMAKE_C_COMPILER_LINKER_VERSION 1053.12)
33+
set(CMAKE_C_COMPILER_LINKER_VERSION 1115.7.3)
3434
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU)
3535
set(CMAKE_MT "")
3636
set(CMAKE_TAPI "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi")
@@ -74,7 +74,7 @@ endif()
7474

7575

7676

77-
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include")
77+
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include")
7878
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
79-
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib/swift")
80-
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks")
79+
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib/swift")
80+
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/System/Library/Frameworks")

cmake-build-debug/CMakeFiles/3.29.6/CMakeCXXCompiler.cmake

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++")
22
set(CMAKE_CXX_COMPILER_ARG1 "")
33
set(CMAKE_CXX_COMPILER_ID "AppleClang")
4-
set(CMAKE_CXX_COMPILER_VERSION "15.0.0.15000309")
4+
set(CMAKE_CXX_COMPILER_VERSION "16.0.0.16000026")
55
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
66
set(CMAKE_CXX_COMPILER_WRAPPER "")
77
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98")
@@ -31,7 +31,7 @@ set(CMAKE_LINKER_LINK "")
3131
set(CMAKE_LINKER_LLD "")
3232
set(CMAKE_CXX_COMPILER_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
3333
set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang")
34-
set(CMAKE_CXX_COMPILER_LINKER_VERSION 1053.12)
34+
set(CMAKE_CXX_COMPILER_LINKER_VERSION 1115.7.3)
3535
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU)
3636
set(CMAKE_MT "")
3737
set(CMAKE_TAPI "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi")
@@ -85,8 +85,8 @@ endif()
8585

8686

8787

88-
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include/c++/v1;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include")
88+
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/include/c++/v1;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/16/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include")
8989
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++")
90-
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/usr/lib/swift")
91-
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.5.sdk/System/Library/Frameworks")
90+
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/usr/lib/swift")
91+
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk/System/Library/Frameworks")
9292
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)