-
Notifications
You must be signed in to change notification settings - Fork 8
Add support of MacOS #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
MrOnlineCoder
wants to merge
16
commits into
denyskryvytskyi:master
Choose a base branch
from
MrOnlineCoder:feature/mac-os-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
41dfd52
WIP of CmakeLists for MacOS and FetchContent
MrOnlineCoder 62fa675
Stuck with irrklang on Mac OS
MrOnlineCoder 2f52bf6
Merge with master
MrOnlineCoder f3e293f
Add OpenGL41 RHI main parts
MrOnlineCoder 007fb50
PrimitivesSandbox is running
MrOnlineCoder 7b774df
Remove glad41
MrOnlineCoder 394da5c
Change zlib order
MrOnlineCoder 825b8ce
Fix cmake for Windows
MrOnlineCoder be72de0
Improve CMakeLists
MrOnlineCoder 938673d
Add folder property to embedded libs
MrOnlineCoder 959e8b2
Fixes according to comments
MrOnlineCoder c6eac9e
Different fixes according to review comments
MrOnlineCoder 0b901f1
Rename WindowsWindow to GLFWWindowImpl
MrOnlineCoder d6be939
Handle multisample textures on opengl41
MrOnlineCoder 44d40c3
Merge branch 'master' into feature/mac-os-support
MrOnlineCoder 1038963
Fixes to context settings
MrOnlineCoder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +0,0 @@ | ||
| [submodule "Engine/vendor/GLFW"] | ||
| path = Engine/vendor/GLFW | ||
| url = https://github.com/glfw/glfw | ||
| [submodule "Engine/vendor/spdlog"] | ||
| path = Engine/vendor/spdlog | ||
| url = https://github.com/gabime/spdlog | ||
| [submodule "Engine/vendor/lia"] | ||
| path = Engine/vendor/lia | ||
| url = https://github.com/denyskryvytskyi/lia | ||
| [submodule "Engine/vendor/assimp"] | ||
| path = Engine/vendor/assimp | ||
| url = https://github.com/assimp/assimp | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "configurations": [ | ||
| { | ||
| "name": "Mac", | ||
| "includePath": [ | ||
| "${workspaceFolder}/**", | ||
| "${workspaceFolder}/Engine/src/**", | ||
| "${workspaceFolder}/build/_deps/json-src/include" | ||
| ], | ||
| "defines": [], | ||
| "macFrameworkPath": [ | ||
| "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks" | ||
| ], | ||
| "compilerPath": "/usr/bin/clang", | ||
| "cStandard": "c17", | ||
| "cppStandard": "c++17", | ||
| "intelliSenseMode": "macos-clang-arm64", | ||
| "forcedInclude": ["${workspaceFolder}/Engine/src/elpch.h"] | ||
| } | ||
| ], | ||
| "version": 4 | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| // Use IntelliSense to learn about possible attributes. | ||
| // Hover to view descriptions of existing attributes. | ||
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "name": "C++ Debug", | ||
| "cwd": "${workspaceFolder}/build/Sandbox3D", | ||
| "type": "lldb", | ||
| "request": "launch", | ||
| "breakpointMode": "file", | ||
| "program": "${workspaceFolder}/build/Sandbox3D/Sandbox3D" | ||
| } | ||
| ] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "files.associations": { | ||
| "*.cl": "cuda-cpp", | ||
| "*.sl": "latex", | ||
| "vector": "cpp", | ||
| "__split_buffer": "cpp", | ||
| "deque": "cpp", | ||
| "list": "cpp", | ||
| "__config": "cpp", | ||
| "ios": "cpp" | ||
| } | ||
| } |
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.