initial template changes, xmake integration

This commit is contained in:
programsnail 2024-07-20 22:43:52 +03:00
parent a1430a42aa
commit b4a4ffc08a
7 changed files with 27 additions and 17 deletions

View file

@ -1,10 +0,0 @@
# You are free to modify this file
cmake_minimum_required(VERSION 3.0)
project(game)
find_package(X11 REQUIRED)
set(CMAKE_CONFIGURATION_TYPES "Debug" "Release")
file(GLOB SRC *.cpp)
add_executable(game ${SRC})
target_link_libraries(game m X11)