summaryrefslogtreecommitdiff
path: root/xmake/templates/c++
diff options
context:
space:
mode:
authorwtz <[email protected]>2023-07-19 12:35:52 +0800
committerwtz <[email protected]>2023-07-19 12:35:52 +0800
commitf75224a8435d0eb9cdda79f8bc571eeef25a8e33 (patch)
tree278e00b17c8f5558df1c1a21f1204078ea62a58f /xmake/templates/c++
parentca83e9a78b7f2d45e833fa705c880867ad2381c6 (diff)
Fix grammar
Diffstat (limited to 'xmake/templates/c++')
-rw-r--r--xmake/templates/c++/tbox.console/project/src/xmake.lua2
-rw-r--r--xmake/templates/c++/tbox.shared/project/src/_library/xmake.lua2
-rw-r--r--xmake/templates/c++/tbox.static/project/src/_library/xmake.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/xmake/templates/c++/tbox.console/project/src/xmake.lua b/xmake/templates/c++/tbox.console/project/src/xmake.lua
index 8664f5347..fd618b9ee 100644
--- a/xmake/templates/c++/tbox.console/project/src/xmake.lua
+++ b/xmake/templates/c++/tbox.console/project/src/xmake.lua
@@ -4,7 +4,7 @@ target("${TARGETNAME}")
-- set kind
set_kind("binary")
- -- add defines
+ -- add definitions
add_defines("__tb_prefix__=\"${TARGETNAME}\"")
-- add packages
diff --git a/xmake/templates/c++/tbox.shared/project/src/_library/xmake.lua b/xmake/templates/c++/tbox.shared/project/src/_library/xmake.lua
index dd27e7cff..5c637ccda 100644
--- a/xmake/templates/c++/tbox.shared/project/src/_library/xmake.lua
+++ b/xmake/templates/c++/tbox.shared/project/src/_library/xmake.lua
@@ -4,7 +4,7 @@ target("${TARGETNAME}")
-- set kind
set_kind("shared")
- -- add defines
+ -- add definitions
add_defines("__tb_prefix__=\"${TARGETNAME}\"")
-- add the header files for installing
diff --git a/xmake/templates/c++/tbox.static/project/src/_library/xmake.lua b/xmake/templates/c++/tbox.static/project/src/_library/xmake.lua
index 1c7d3ea7b..bdcf999f8 100644
--- a/xmake/templates/c++/tbox.static/project/src/_library/xmake.lua
+++ b/xmake/templates/c++/tbox.static/project/src/_library/xmake.lua
@@ -4,7 +4,7 @@ target("${TARGETNAME}")
-- set kind
set_kind("static")
- -- add defines
+ -- add definitions
add_defines("__tb_prefix__=\"${TARGETNAME}\"")
-- add the header files for installing