changed some stuf around lol

wow i didnt know that kate had extended git message.
this is rlly cool rlly
This commit is contained in:
kin fuyuki 2026-03-11 02:25:52 -03:00
commit 1df1cef78f
No known key found for this signature in database
GPG key ID: 0E4E8E519FB71401
33 changed files with 659 additions and 900 deletions

View file

@ -0,0 +1,23 @@
cmake_minimum_required(VERSION 3.20)
set(CMAKE_CXX_FLAGS "-std=c++26 -Wno-error -Oz -w -g -mavx2")
file(GLOB_RECURSE kstralight_SOURCES CONFIGURE_DEPENDS "src/*.cpp")
add_executable(kstralight ${kstralight_SOURCES})
if(NOT DEFINED ${ARCH})
set(ARCH "linux-64")
endif(NOT DEFINED ${ARCH})
set_target_properties(kstralight PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/built/kstralight/${PLATFORM_DIR}/bin"
)
target_link_directories(
kstralight PUBLIC
"${CMAKE_SOURCE_DIR}/link")
target_link_libraries(kstralight PRIVATE
enginend
raylib
)
target_include_directories(kstralight PUBLIC
${CMAKE_SOURCE_DIR}/include
)