mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-05 09:29:08 +00:00
chore(build): add vendored SDL 3.0.0 library
This commit is contained in:
parent
934e0fb600
commit
cf257c771f
1698 changed files with 630612 additions and 0 deletions
16
vendor/sdl-3.0.0/.github/cmake/CMakeLists.txt
vendored
Normal file
16
vendor/sdl-3.0.0/.github/cmake/CMakeLists.txt
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
cmake_minimum_required(VERSION 3.0)
|
||||
project(ci_utils C CXX)
|
||||
|
||||
set(txt "CC=${CMAKE_C_COMPILER}
|
||||
CXX=${CMAKE_CXX_COMPILER}
|
||||
CFLAGS=${CMAKE_C_FLAGS}
|
||||
CXXFLAGS=${CMAKE_CXX_FLAGS}
|
||||
LDFLAGS=${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_C_STANDARD_LIBRARIES}
|
||||
")
|
||||
|
||||
message("${txt}")
|
||||
|
||||
set(VAR_PATH "/tmp/env.txt" CACHE PATH "Where to write environment file")
|
||||
message(STATUS "Writing CC/CXX/CFLAGS/CXXFLAGS/LDFLAGS environment to ${VAR_PATH}")
|
||||
|
||||
file(WRITE "${VAR_PATH}" "${txt}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue