-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLUGA-GRAPHICS: include raylib include
- Loading branch information
1 parent
be4de45
commit 03a1d38
Showing
2 changed files
with
20 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
cmake_minimum_required(VERSION 3.20) | ||
|
||
include(FetchContent) | ||
|
||
FetchContent_Declare( | ||
raylib | ||
CMAKE_ARGS "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_CONFIGURATION_TYPES=\"Release;Release\"" "-DCONFIG=Release" | ||
URL "https://github.com/X-R-G-B/R-Bus/releases/latest/download/raylib.tar" | ||
DOWNLOAD_NO_PROGRESS FALSE | ||
DOWNLOAD_EXTRACT_TIMESTAMP TRUE | ||
) | ||
|
||
FetchContent_MakeAvailable(raylib) | ||
|
||
target_include_directories( | ||
${PROJECT_NAME} | ||
PRIVATE | ||
${raylib_SOURCE_DIR}/src | ||
) |