summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorruki <[email protected]>2019-01-17 00:53:14 +0800
committerruki <[email protected]>2019-01-16 23:19:25 +0800
commit6e7bedfc63217b0e1d02a55b01de6f5e5457ec1a (patch)
tree8d05f12a787c94af70ef0bea5e918b3dfa5cc7be /tests
parent7d011ff2746b005f1346c66ab19aae1b9ba77d3f (diff)
update tests
Diffstat (limited to 'tests')
-rw-r--r--tests/projects/qt/quickapp/xmake.lua2
-rw-r--r--tests/projects/qt/shared_library/xmake.lua2
-rw-r--r--tests/projects/qt/static_library/xmake.lua2
-rw-r--r--tests/projects/qt/widgetapp/xmake.lua2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/projects/qt/quickapp/xmake.lua b/tests/projects/qt/quickapp/xmake.lua
index 111b0d6be..0eb3fc57a 100644
--- a/tests/projects/qt/quickapp/xmake.lua
+++ b/tests/projects/qt/quickapp/xmake.lua
@@ -9,7 +9,7 @@ target("qt_demo")
add_rules("qt.application")
-- add headers
- add_headers("src/*.h")
+ add_headerfiles("src/*.h")
-- add files
add_files("src/*.cpp")
diff --git a/tests/projects/qt/shared_library/xmake.lua b/tests/projects/qt/shared_library/xmake.lua
index 803065b72..c0679d6b1 100644
--- a/tests/projects/qt/shared_library/xmake.lua
+++ b/tests/projects/qt/shared_library/xmake.lua
@@ -9,7 +9,7 @@ target("qt_demo")
add_rules("qt.shared")
-- add headers
- add_headers("src/*.h")
+ add_headerfiles("src/*.h")
-- add files
add_files("src/*.cpp")
diff --git a/tests/projects/qt/static_library/xmake.lua b/tests/projects/qt/static_library/xmake.lua
index ce755850a..b69261d45 100644
--- a/tests/projects/qt/static_library/xmake.lua
+++ b/tests/projects/qt/static_library/xmake.lua
@@ -9,7 +9,7 @@ target("qt_demo")
add_rules("qt.static")
-- add headers
- add_headers("src/*.h")
+ add_headerfiles("src/*.h")
-- add files
add_files("src/*.cpp")
diff --git a/tests/projects/qt/widgetapp/xmake.lua b/tests/projects/qt/widgetapp/xmake.lua
index 1d1a3ba3a..dc052f202 100644
--- a/tests/projects/qt/widgetapp/xmake.lua
+++ b/tests/projects/qt/widgetapp/xmake.lua
@@ -9,7 +9,7 @@ target("qt_demo")
add_rules("qt.application")
-- add headers
- add_headers("src/*.h")
+ add_headerfiles("src/*.h")
-- add files
add_files("src/*.cpp")