Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
xmake -y -vv -j$(nproc)

- name: Test
run: xmake run templates_test
run: xmake run primitives_test

- name: Run examples
run: xmake run basic
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
xmake -y -vv -j$env:NUMBER_OF_PROCESSORS

- name: Test
run: xmake run templates_test
run: xmake run primitives_test

- name: Run examples
run: xmake run basic
2 changes: 1 addition & 1 deletion tests/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_requires("gtest")

target("primitives_test")
set_kind("binary")
add_files("*.cpp")
add_files("basic/*.cpp")
add_deps("mcpplibs-primitives")
add_packages("gtest")
set_policy("build.c++.modules", true)
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set_languages("c++23")

target("mcpplibs-primitives")
set_kind("static")
add_files("src/*.cppm", { public = true, install = true })
add_files("src/**.cppm", { public = true, install = true })
set_policy("build.c++.modules", true)

if not is_host("macosx") then
Expand Down