MrFrenik / gunslinger

C99, header-only framework for games and multimedia applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use cmake?

thecardinelli opened this issue · comments

Have you considered using CMake to manage builds? The proc/ scripts seem to duplicate a lot of stuff and don't work well out of the box...

What issue are you having with the scripts?
They work just fine for me.
Also if you use clion its very to create a cmake file
`
project(YourProject)

set(CMAKE_C_STANDARD 99)
include_directories(somthing/external)
include_directories(third_party/include)
add_executable(YourProject
something/source/*.c
)
` for anyone that needs something basic using the file structure of the examples

Close as duplicate of MrFrenik/gs_examples#4