summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-11-28 14:05:22 +0800
committerruki <[email protected]>2021-11-28 14:05:22 +0800
commit2a4d32b2d71850d1b78c5ffe93b1e164920f290a (patch)
treecdd6edb8bf17d675f0b9dd2feb731caddc31f3c2
parent6a315bad9fd1370c41ddd0f6cd48ae51dbf0d3f9 (diff)
improve openmp tests
-rw-r--r--tests/projects/openmp/hello/xmake.lua1
-rw-r--r--tests/projects/openmp/loop/xmake.lua1
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/projects/openmp/hello/xmake.lua b/tests/projects/openmp/hello/xmake.lua
index c1f837287..3bf3dccc4 100644
--- a/tests/projects/openmp/hello/xmake.lua
+++ b/tests/projects/openmp/hello/xmake.lua
@@ -2,5 +2,4 @@ add_requires("libomp", {optional = true})
target("hello")
set_kind("binary")
add_files("src/*.c")
- add_rules("c.openmp")
add_packages("libomp")
diff --git a/tests/projects/openmp/loop/xmake.lua b/tests/projects/openmp/loop/xmake.lua
index eb14be1a3..200e5f09f 100644
--- a/tests/projects/openmp/loop/xmake.lua
+++ b/tests/projects/openmp/loop/xmake.lua
@@ -2,5 +2,4 @@ add_requires("libomp", {optional = true})
target("loop")
set_kind("binary")
add_files("src/*.cpp")
- add_rules("c++.openmp")
add_packages("libomp")