Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

Commit

Permalink
build: add xmake.lua configuration
Browse files Browse the repository at this point in the history
- Set up xmake.lua with SFML 2.6.* requirement
- Define target 'gomoku' with source files and package dependencies
  • Loading branch information
ShenMian committed Jul 7, 2024
1 parent afdd8c4 commit 5497a16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.xmake
/target
/.cache
/build
Expand Down
8 changes: 8 additions & 0 deletions xmake.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
add_requires("sfml 2.6.*")

set_languages("c++23")

target("gomoku")
set_kind("binary")
add_files("src/*.cpp")
add_packages("sfml")

0 comments on commit 5497a16

Please sign in to comment.