diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-06-13 22:15:48 +0200 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-06-13 22:15:48 +0200 |
commit | 95cde5c181b5fd1d9ee3f13db749799c4e8ac9d3 (patch) | |
tree | 352480349a46d19ab5b8078ac4ccb79d27166f04 /raylib/CMakeLists.txt | |
parent | mouse is captured again, pretty gud (diff) | |
download | yabs-95cde5c181b5fd1d9ee3f13db749799c4e8ac9d3.tar.gz yabs-95cde5c181b5fd1d9ee3f13db749799c4e8ac9d3.tar.bz2 yabs-95cde5c181b5fd1d9ee3f13db749799c4e8ac9d3.tar.xz yabs-95cde5c181b5fd1d9ee3f13db749799c4e8ac9d3.tar.zst yabs-95cde5c181b5fd1d9ee3f13db749799c4e8ac9d3.zip |
add raylib to the build chain with -O3 and -march=native
Diffstat (limited to 'raylib/CMakeLists.txt')
-rwxr-xr-x | raylib/CMakeLists.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/raylib/CMakeLists.txt b/raylib/CMakeLists.txt new file mode 100755 index 0000000..4d06fb8 --- /dev/null +++ b/raylib/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required(VERSION 3.0) +project(raylib) + +# Directory for easier includes +# Anywhere you see include(...) you can check <root>/cmake for that file +set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) + +# RAYLIB_IS_MAIN determines whether the project is being used from root +# or if it is added as a dependency (through add_subdirectory for example). +if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}") + set(RAYLIB_IS_MAIN TRUE) +else() + set(RAYLIB_IS_MAIN FALSE) +endif() + +# Sets compiler flags and language standard +include(CompilerFlags) + +# Registers build options that are exposed to cmake +include(CMakeOptions.txt) + +# Enforces a few environment and compiler configurations +include(BuildOptions) + +# Main sources directory (the second parameter sets the output directory name to raylib) +add_subdirectory(src raylib) + +enable_testing() |