diff options
| author | Per Larsson <[email protected]> | 2021-12-14 13:31:59 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-12-14 13:31:59 +0100 |
| commit | 8019938c3c2c941669a94942e52fa7d7fe6408bf (patch) | |
| tree | a976b3b0e910a4b5ead34a2a2cbc1c624958c007 /zenutil/xmake.lua | |
| parent | Merged main. (diff) | |
| download | zen-8019938c3c2c941669a94942e52fa7d7fe6408bf.tar.xz zen-8019938c3c2c941669a94942e52fa7d7fe6408bf.zip | |
Include header files when generating solution.
Diffstat (limited to 'zenutil/xmake.lua')
| -rw-r--r-- | zenutil/xmake.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zenutil/xmake.lua b/zenutil/xmake.lua index 7cd29a86f..484090aae 100644 --- a/zenutil/xmake.lua +++ b/zenutil/xmake.lua @@ -1,6 +1,7 @@ target('zenutil') set_kind("static") + add_headerfiles("**.h") add_files("**.cpp") add_includedirs("include", {public=true}) add_deps("zencore") - add_packages("vcpkg::spdlog")
\ No newline at end of file + add_packages("vcpkg::spdlog") |