diff options
| author | Liu <[email protected]> | 2019-12-02 21:32:50 +0800 |
|---|---|---|
| committer | Liu <[email protected]> | 2019-12-02 21:33:15 +0800 |
| commit | 30d4183095aa5dcdb9cbe00b1b48e45ca31424fe (patch) | |
| tree | b8e47b54d84dab64cc9a65e101fcc947e52ea6cc /tests/projects | |
| parent | 45b739d927c89d93d85f626ab77dee70746c1cd3 (diff) | |
clear tail white space
Diffstat (limited to 'tests/projects')
43 files changed, 74 insertions, 74 deletions
diff --git a/tests/projects/c++/console/xmake.lua b/tests/projects/c++/console/xmake.lua index f6beb31d8..9ab7f42ca 100644 --- a/tests/projects/c++/console/xmake.lua +++ b/tests/projects/c++/console/xmake.lua @@ -8,5 +8,5 @@ target("console_c++") set_kind("binary") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") diff --git a/tests/projects/c++/modules/class/xmake.lua b/tests/projects/c++/modules/class/xmake.lua index f0dcc3ea7..a3bc3a394 100644 --- a/tests/projects/c++/modules/class/xmake.lua +++ b/tests/projects/c++/modules/class/xmake.lua @@ -1,5 +1,5 @@ target("class") set_kind("binary") - add_files("src/*.cpp", "src/*.mpp") + add_files("src/*.cpp", "src/*.mpp") diff --git a/tests/projects/c++/modules/dependence/xmake.lua b/tests/projects/c++/modules/dependence/xmake.lua index 4a2608cd3..14d6ca17c 100644 --- a/tests/projects/c++/modules/dependence/xmake.lua +++ b/tests/projects/c++/modules/dependence/xmake.lua @@ -1,6 +1,6 @@ target("dependence") set_kind("binary") - add_files("src/*.cpp", "src/*.mpp") + add_files("src/*.cpp", "src/*.mpp") set_languages("c++11") diff --git a/tests/projects/c++/modules/hello/xmake.lua b/tests/projects/c++/modules/hello/xmake.lua index e22047e4b..6c3bff19a 100644 --- a/tests/projects/c++/modules/hello/xmake.lua +++ b/tests/projects/c++/modules/hello/xmake.lua @@ -1,5 +1,5 @@ target("hello") set_kind("binary") - add_files("src/*.cpp", "src/*.mpp") + add_files("src/*.cpp", "src/*.mpp") diff --git a/tests/projects/c++/modules/impl_unit/xmake.lua b/tests/projects/c++/modules/impl_unit/xmake.lua index 1ce6cb8b6..3d19e0908 100644 --- a/tests/projects/c++/modules/impl_unit/xmake.lua +++ b/tests/projects/c++/modules/impl_unit/xmake.lua @@ -1,5 +1,5 @@ target("impl_unit") set_kind("binary") - add_files("src/*.cpp", "src/*.mpp") + add_files("src/*.cpp", "src/*.mpp") diff --git a/tests/projects/c++/modules/inline_and_template/xmake.lua b/tests/projects/c++/modules/inline_and_template/xmake.lua index e22a0ef04..c0722cccc 100644 --- a/tests/projects/c++/modules/inline_and_template/xmake.lua +++ b/tests/projects/c++/modules/inline_and_template/xmake.lua @@ -1,6 +1,6 @@ target("inline_and_template") set_kind("binary") - add_files("src/*.cpp", "src/*.mpp") + add_files("src/*.cpp", "src/*.mpp") set_languages("c++11") diff --git a/tests/projects/c++/shared_library/xmake.lua b/tests/projects/c++/shared_library/xmake.lua index cd423db3b..4410e1aa7 100644 --- a/tests/projects/c++/shared_library/xmake.lua +++ b/tests/projects/c++/shared_library/xmake.lua @@ -8,7 +8,7 @@ target("shared_library_c++") set_kind("shared") -- add files - add_files("src/interface.cpp") + add_files("src/interface.cpp") -- add target target("test") @@ -20,6 +20,6 @@ target("test") add_deps("shared_library_c++") -- add files - add_files("src/test.cpp") + add_files("src/test.cpp") diff --git a/tests/projects/c++/static_library/xmake.lua b/tests/projects/c++/static_library/xmake.lua index b084aab18..9c82ee074 100644 --- a/tests/projects/c++/static_library/xmake.lua +++ b/tests/projects/c++/static_library/xmake.lua @@ -8,7 +8,7 @@ target("static_library_c++") set_kind("static") -- add files - add_files("src/interface.cpp") + add_files("src/interface.cpp") -- add target target("test") @@ -20,6 +20,6 @@ target("test") add_deps("static_library_c++") -- add files - add_files("src/test.cpp") + add_files("src/test.cpp") diff --git a/tests/projects/c/console/xmake.lua b/tests/projects/c/console/xmake.lua index a9106daff..547d0f101 100644 --- a/tests/projects/c/console/xmake.lua +++ b/tests/projects/c/console/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -9,5 +9,5 @@ target("console_c") set_kind("binary") -- add files - add_files("src/*.c") + add_files("src/*.c") diff --git a/tests/projects/c/shared_library/xmake.lua b/tests/projects/c/shared_library/xmake.lua index 48ccc67b3..6507658c6 100644 --- a/tests/projects/c/shared_library/xmake.lua +++ b/tests/projects/c/shared_library/xmake.lua @@ -2,11 +2,11 @@ add_rules("mode.release", "mode.debug") target("shared_library_c") set_kind("shared") - add_files("src/interface.c") + add_files("src/interface.c") target("test") set_kind("binary") add_deps("shared_library_c") - add_files("src/test.c") + add_files("src/test.c") diff --git a/tests/projects/c/static library with spaces/xmake.lua b/tests/projects/c/static library with spaces/xmake.lua index 318c286ee..b35709072 100644 --- a/tests/projects/c/static library with spaces/xmake.lua +++ b/tests/projects/c/static library with spaces/xmake.lua @@ -28,7 +28,7 @@ target("static_library_c") set_kind("static") -- add files - add_files("s r c/interface.c") + add_files("s r c/interface.c") -- add target target("test") @@ -40,6 +40,6 @@ target("test") add_deps("static_library_c") -- add files - add_files("s r c/test.c") + add_files("s r c/test.c") diff --git a/tests/projects/c/static_library/xmake.lua b/tests/projects/c/static_library/xmake.lua index c3cc56e1a..67081b1c2 100644 --- a/tests/projects/c/static_library/xmake.lua +++ b/tests/projects/c/static_library/xmake.lua @@ -2,11 +2,11 @@ add_rules("mode.release", "mode.debug") target("static_library_c") set_kind("static") - add_files("src/interface.c") + add_files("src/interface.c") target("test") set_kind("binary") add_deps("static_library_c") - add_files("src/test.c") + add_files("src/test.c") diff --git a/tests/projects/dlang/console/xmake.lua b/tests/projects/dlang/console/xmake.lua index 474c15ec2..374a6826a 100644 --- a/tests/projects/dlang/console/xmake.lua +++ b/tests/projects/dlang/console/xmake.lua @@ -8,5 +8,5 @@ target("console_dlang") set_kind("binary") -- add files - add_files("src/*.d") + add_files("src/*.d") diff --git a/tests/projects/dlang/shared_library/xmake.lua b/tests/projects/dlang/shared_library/xmake.lua index ced757e5e..7fa8b3b8a 100644 --- a/tests/projects/dlang/shared_library/xmake.lua +++ b/tests/projects/dlang/shared_library/xmake.lua @@ -8,7 +8,7 @@ target("interfaces") set_kind("shared") -- add files - add_files("src/interfaces.d") + add_files("src/interfaces.d") -- add target target("test") @@ -20,7 +20,7 @@ target("test") add_deps("interfaces") -- add files - add_files("src/main.d") + add_files("src/main.d") -- add links add_links("interfaces") diff --git a/tests/projects/dlang/static_library/xmake.lua b/tests/projects/dlang/static_library/xmake.lua index 238aa1197..74699bb04 100644 --- a/tests/projects/dlang/static_library/xmake.lua +++ b/tests/projects/dlang/static_library/xmake.lua @@ -8,7 +8,7 @@ target("interfaces") set_kind("static") -- add files - add_files("src/interfaces.d") + add_files("src/interfaces.d") -- add target target("test") @@ -20,7 +20,7 @@ target("test") add_deps("interfaces") -- add files - add_files("src/main.d") + add_files("src/main.d") -- add links add_links("interfaces") diff --git a/tests/projects/go/console/xmake.lua b/tests/projects/go/console/xmake.lua index cae347a8d..b263bdac7 100644 --- a/tests/projects/go/console/xmake.lua +++ b/tests/projects/go/console/xmake.lua @@ -8,5 +8,5 @@ target("console_go") set_kind("binary") -- add files - add_files("src/*.go") + add_files("src/*.go") diff --git a/tests/projects/go/static_library/xmake.lua b/tests/projects/go/static_library/xmake.lua index 560d67292..8284fb983 100644 --- a/tests/projects/go/static_library/xmake.lua +++ b/tests/projects/go/static_library/xmake.lua @@ -8,7 +8,7 @@ target("module") set_kind("static") -- add files - add_files("src/test/*.go") + add_files("src/test/*.go") -- add target target("test") @@ -20,7 +20,7 @@ target("test") add_deps("module") -- add files - add_files("src/*.go") + add_files("src/*.go") -- add link directory add_linkdirs("$(buildir)/$(plat)/$(arch)/$(mode)") diff --git a/tests/projects/hybrid/static_library/xmake.lua b/tests/projects/hybrid/static_library/xmake.lua index bc382c7c3..5d0ef1494 100644 --- a/tests/projects/hybrid/static_library/xmake.lua +++ b/tests/projects/hybrid/static_library/xmake.lua @@ -4,20 +4,20 @@ target("test") set_kind("static") add_files("src/*.c", "src/*.cpp") if is_plat("macosx") then - add_files("src/*.m", "src/*.mm") + add_files("src/*.m", "src/*.mm") end target("demo") set_kind("binary") add_deps("test") - add_files("src/main.cpp") + add_files("src/main.cpp") if is_plat("macosx") then add_defines("MACOSX") end target("demo2") set_kind("binary") - add_files("src/main2.cpp", "src/*.d") + add_files("src/main2.cpp", "src/*.d") if not is_plat("macosx") then set_enabled(false) end diff --git a/tests/projects/objc++/console/xmake.lua b/tests/projects/objc++/console/xmake.lua index 8fba2d568..d701c3723 100644 --- a/tests/projects/objc++/console/xmake.lua +++ b/tests/projects/objc++/console/xmake.lua @@ -18,5 +18,5 @@ target("console_objc++") set_kind("binary") -- add files - add_files("src/*.mm") + add_files("src/*.mm") diff --git a/tests/projects/objc++/modulemap/xmake.lua b/tests/projects/objc++/modulemap/xmake.lua index a7cdbc308..efd641f1b 100644 --- a/tests/projects/objc++/modulemap/xmake.lua +++ b/tests/projects/objc++/modulemap/xmake.lua @@ -1,6 +1,6 @@ target("modulemap") set_kind("binary") - add_files("src/*.mm", "src/*.m") + add_files("src/*.mm", "src/*.m") add_mxxflags("-fmodules", "-fcxx-modules", "-fmodule-map-file=src/module.modulemap") diff --git a/tests/projects/objc/console/xmake.lua b/tests/projects/objc/console/xmake.lua index 440ce0ffb..5073b3b0f 100644 --- a/tests/projects/objc/console/xmake.lua +++ b/tests/projects/objc/console/xmake.lua @@ -18,5 +18,5 @@ target("console_objc") set_kind("binary") -- add files - add_files("src/*.m") + add_files("src/*.m") diff --git a/tests/projects/objc/modulemap/xmake.lua b/tests/projects/objc/modulemap/xmake.lua index db00678f2..1aad626b0 100644 --- a/tests/projects/objc/modulemap/xmake.lua +++ b/tests/projects/objc/modulemap/xmake.lua @@ -1,6 +1,6 @@ target("modulemap") set_kind("binary") - add_files("src/*.m") + add_files("src/*.m") add_mflags("-fmodules", "-fmodule-map-file=src/module.modulemap") diff --git a/tests/projects/other/merge_archive/xmake.lua b/tests/projects/other/merge_archive/xmake.lua index 81b22c5e0..86a08ab8a 100644 --- a/tests/projects/other/merge_archive/xmake.lua +++ b/tests/projects/other/merge_archive/xmake.lua @@ -2,18 +2,18 @@ add_rules("mode.debug", "mode.release") target("add") set_kind("static") - add_files("src/add.c") + add_files("src/add.c") set_targetdir("$(buildir)/merge_archive") target("sub") set_kind("static") - add_files("src/sub.c") + add_files("src/sub.c") set_targetdir("$(buildir)/merge_archive") target("mul") set_kind("static") add_deps("add", "sub") - add_files("src/mul.c") + add_files("src/mul.c") if is_plat("windows") then add_files("$(buildir)/merge_archive/*.lib") else diff --git a/tests/projects/other/merge_object/xmake.lua b/tests/projects/other/merge_object/xmake.lua index 772bc2c18..8e634b03c 100644 --- a/tests/projects/other/merge_object/xmake.lua +++ b/tests/projects/other/merge_object/xmake.lua @@ -8,7 +8,7 @@ target("merge_object") set_kind("static") -- add files - add_files("src/interface.c") + add_files("src/interface.c") -- save object file after_build_file(function (target, sourcefile) @@ -25,7 +25,7 @@ target("test") add_deps("merge_object") -- add files - add_files("src/test.c") + add_files("src/test.c") if is_plat("windows") then add_files("$(buildir)/merge_object/interface.c.obj") else diff --git a/tests/projects/package/basic/xmake.lua b/tests/projects/package/basic/xmake.lua index b7ec6919d..b7e6c67ea 100644 --- a/tests/projects/package/basic/xmake.lua +++ b/tests/projects/package/basic/xmake.lua @@ -14,7 +14,7 @@ target("console") set_kind("binary") -- add files - add_files("src/*.c") + add_files("src/*.c") -- add packages add_packages("tbox", "zlib", "pcre2", "luajit") diff --git a/tests/projects/qt/console/xmake.lua b/tests/projects/qt/console/xmake.lua index 249f52cdd..71b7ae892 100644 --- a/tests/projects/qt/console/xmake.lua +++ b/tests/projects/qt/console/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -9,5 +9,5 @@ target("qt_console") add_rules("qt.console") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") diff --git a/tests/projects/qt/console_static/xmake.lua b/tests/projects/qt/console_static/xmake.lua index 249f52cdd..71b7ae892 100644 --- a/tests/projects/qt/console_static/xmake.lua +++ b/tests/projects/qt/console_static/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -9,5 +9,5 @@ target("qt_console") add_rules("qt.console") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") diff --git a/tests/projects/qt/quickapp/xmake.lua b/tests/projects/qt/quickapp/xmake.lua index f71402a14..747f1a1dc 100644 --- a/tests/projects/qt/quickapp/xmake.lua +++ b/tests/projects/qt/quickapp/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,7 +12,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/qml.qrc") diff --git a/tests/projects/qt/quickapp_static/xmake.lua b/tests/projects/qt/quickapp_static/xmake.lua index 563851141..05fd78e84 100644 --- a/tests/projects/qt/quickapp_static/xmake.lua +++ b/tests/projects/qt/quickapp_static/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- includes @@ -15,7 +15,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/qml.qrc") -- add plugin: qml.QtQuick diff --git a/tests/projects/qt/shared_library/xmake.lua b/tests/projects/qt/shared_library/xmake.lua index c0679d6b1..3e855ddad 100644 --- a/tests/projects/qt/shared_library/xmake.lua +++ b/tests/projects/qt/shared_library/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,7 +12,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") -- add defines add_defines("QT_DEMO_LIBRARY") diff --git a/tests/projects/qt/static_library/xmake.lua b/tests/projects/qt/static_library/xmake.lua index b69261d45..480c55f48 100644 --- a/tests/projects/qt/static_library/xmake.lua +++ b/tests/projects/qt/static_library/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,7 +12,7 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") -- add frameworks add_frameworks("QtGui") diff --git a/tests/projects/qt/widgetapp/xmake.lua b/tests/projects/qt/widgetapp/xmake.lua index 1bee2e4b6..2554e52d8 100644 --- a/tests/projects/qt/widgetapp/xmake.lua +++ b/tests/projects/qt/widgetapp/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -12,10 +12,10 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/mainwindow.ui") -- add files with Q_OBJECT meta (only for qt.moc) - add_files("src/mainwindow.h") + add_files("src/mainwindow.h") diff --git a/tests/projects/qt/widgetapp_static/xmake.lua b/tests/projects/qt/widgetapp_static/xmake.lua index 12fdd0715..9adeae04c 100644 --- a/tests/projects/qt/widgetapp_static/xmake.lua +++ b/tests/projects/qt/widgetapp_static/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- includes @@ -15,11 +15,11 @@ target("qt_demo") add_headerfiles("src/*.h") -- add files - add_files("src/*.cpp") + add_files("src/*.cpp") add_files("src/mainwindow.ui") -- add files with Q_OBJECT meta (only for qt.moc) - add_files("src/mainwindow.h") + add_files("src/mainwindow.h") -- add plugin: QSvgPlugin (optional) qt_add_static_plugins("QSvgPlugin", {linkdirs = "plugins/imageformats", links = {"qsvg", "Qt5Svg"}}) diff --git a/tests/projects/rust/console/xmake.lua b/tests/projects/rust/console/xmake.lua index b2c8efd39..868e70595 100644 --- a/tests/projects/rust/console/xmake.lua +++ b/tests/projects/rust/console/xmake.lua @@ -8,5 +8,5 @@ target("console_rust") set_kind("binary") -- add files - add_files("src/*.rs") + add_files("src/*.rs") diff --git a/tests/projects/rust/static_library/xmake.lua b/tests/projects/rust/static_library/xmake.lua index b873a4c9e..f66f48b0f 100644 --- a/tests/projects/rust/static_library/xmake.lua +++ b/tests/projects/rust/static_library/xmake.lua @@ -8,7 +8,7 @@ target("interfaces") set_kind("static") -- add files - add_files("src/interfaces.rs") + add_files("src/interfaces.rs") -- add target target("test") @@ -20,7 +20,7 @@ target("test") add_deps("interfaces") -- add files - add_files("src/main.rs") + add_files("src/main.rs") -- add link directory add_linkdirs("$(buildir)/$(mode)/$(arch)") diff --git a/tests/projects/swift/console/xmake.lua b/tests/projects/swift/console/xmake.lua index e792b81f0..a9440ef2d 100644 --- a/tests/projects/swift/console/xmake.lua +++ b/tests/projects/swift/console/xmake.lua @@ -8,5 +8,5 @@ target("console_swift") set_kind("binary") -- add files - add_files("src/*.swift") + add_files("src/*.swift") diff --git a/tests/projects/wdk/kmdf/ioctl/driver/nonpnp.c b/tests/projects/wdk/kmdf/ioctl/driver/nonpnp.c index 2e66a9e13..13f811f35 100644 --- a/tests/projects/wdk/kmdf/ioctl/driver/nonpnp.c +++ b/tests/projects/wdk/kmdf/ioctl/driver/nonpnp.c @@ -1187,7 +1187,7 @@ Return Value: goto End;
}
- #pragma prefast(suppress:6387, "If outBuf==NULL at this point, then outBufLen==0")
+ #pragma prefast(suppress:6387, "If outBuf==NULL at this point, then outBufLen==0")
status = WdfRequestProbeAndLockUserBufferForWrite(Request,
outBuf,
outBufLen,
diff --git a/tests/projects/wdk/kmdf/ioctl/xmake.lua b/tests/projects/wdk/kmdf/ioctl/xmake.lua index c630367b5..51d895655 100644 --- a/tests/projects/wdk/kmdf/ioctl/xmake.lua +++ b/tests/projects/wdk/kmdf/ioctl/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add include directories @@ -25,6 +25,6 @@ target("app") add_rules("wdk.env.kmdf", "wdk.binary") -- add files - add_files("exe/*.c") + add_files("exe/*.c") add_files("exe/*.inf") diff --git a/tests/projects/wdk/kmdf/serial/xmake.lua b/tests/projects/wdk/kmdf/serial/xmake.lua index 0a6143838..38b222e9d 100644 --- a/tests/projects/wdk/kmdf/serial/xmake.lua +++ b/tests/projects/wdk/kmdf/serial/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target diff --git a/tests/projects/wdk/umdf/echo/xmake.lua b/tests/projects/wdk/umdf/echo/xmake.lua index 582e9ee46..edb623793 100644 --- a/tests/projects/wdk/umdf/echo/xmake.lua +++ b/tests/projects/wdk/umdf/echo/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- enable unicode @@ -19,7 +19,7 @@ target("echo") -- set_values("wdk.sign.certfile", path.join(os.projectdir(), "xxx.cer")) -- add files - add_files("driver/*.c") + add_files("driver/*.c") add_files("driver/*.inx") -- add includedirs @@ -32,5 +32,5 @@ target("app") add_rules("wdk.env.umdf", "wdk.binary") -- add files - add_files("exe/*.cpp") + add_files("exe/*.cpp") diff --git a/tests/projects/wdk/umdf/skeleton/xmake.lua b/tests/projects/wdk/umdf/skeleton/xmake.lua index 0cd653885..82ca03e54 100644 --- a/tests/projects/wdk/umdf/skeleton/xmake.lua +++ b/tests/projects/wdk/umdf/skeleton/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- enable unicode @@ -16,7 +16,7 @@ target("UMDFSkeleton") -- add files add_files("*.cpp", {rule = "wdk.tracewpp"}) - add_files("*.rc", "*.inx") + add_files("*.rc", "*.inx") -- set umdf sdk version set_values("wdk.umdf.sdkver", "1.9") diff --git a/tests/projects/wdk/wdm/msdsm/xmake.lua b/tests/projects/wdk/wdm/msdsm/xmake.lua index 069f69767..0c5939a84 100644 --- a/tests/projects/wdk/wdm/msdsm/xmake.lua +++ b/tests/projects/wdk/wdm/msdsm/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target diff --git a/tests/projects/wdk/wdm/perfcounters/xmake.lua b/tests/projects/wdk/wdm/perfcounters/xmake.lua index 21a36ee4c..c5a51cd23 100644 --- a/tests/projects/wdk/wdm/perfcounters/xmake.lua +++ b/tests/projects/wdk/wdm/perfcounters/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -13,7 +13,7 @@ target("kcs") add_values("wdk.man.resource", "kcsCounters.rc") add_values("wdk.man.header", "kcsCounters.h") add_values("wdk.man.counter_header", "kcsCounters_counters.h") - + -- add files - add_files("*.c", "*.rc", "*.man") + add_files("*.c", "*.rc", "*.man") |
