# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- #************************************************************************* # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # #************************************************************************* $(eval $(call gb_CppunitTest_CppunitTest,sc_tablevalidationobj)) $(eval $(call gb_CppunitTest_use_external,sc_tablevalidationobj,boost_headers)) $(eval $(call gb_CppunitTest_use_common_precompiled_header,sc_tablevalidationobj)) $(eval $(call gb_CppunitTest_add_exception_objects,sc_tablevalidationobj, \ sc/qa/extras/sctablevalidationobj \ )) $(eval $(call gb_CppunitTest_use_libraries,sc_tablevalidationobj, \ cppu \ sal \ subsequenttest \ test \ unotest \ )) $(eval $(call gb_CppunitTest_set_include,sc_tablevalidationobj,\ $$(INCLUDE) \ )) $(eval $(call gb_CppunitTest_use_sdk_api,sc_tablevalidationobj)) $(eval $(call gb_CppunitTest_use_ure,sc_tablevalidationobj)) $(eval $(call gb_CppunitTest_use_vcl,sc_tablevalidationobj)) $(eval $(call gb_CppunitTest_use_components,sc_tablevalidationobj,\ $(sc_unoapi_common_components) \ )) $(eval $(call gb_CppunitTest_use_configuration,sc_tablevalidationobj)) # vim: set noet sw=4 ts=4: distro/cib/libreoffice-5-2'>distro/cib/libreoffice-5-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/bin/run
AgeCommit message (Collapse)Author
2022-08-20Remove extra output from "bin/run -l" on WindowsHossein
The previous output contained extra file names other than executables, but now we limit the output to *.bat and *.exe files. Change-Id: Ie785d1e4388780b290f6580d02af635279080412 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138556 Tested-by: Jenkins Reviewed-by: Hossein <hossein@libreoffice.org>
2022-08-19Fix "bin/run -l" to work correctly on WindowsHossein
On Windows, the script did not run correctly because of the "return"s. Here, we use "exit" instead. Also, there were many files with the same name but with different extensions in the output. Now, we only print out the names using grep, awk and sort utilities. In addition, a description for bin/run is added to bin/README.md Change-Id: Ifb106c89199ebc5a9debf6caef80bd1edf143b20 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138514 Tested-by: Jenkins Reviewed-by: Hossein <hossein@libreoffice.org>
2022-07-30Add help and list executables options for bin/run scriptHossein
bin/run script is described as: "simple wrapper script to run non-installed executables from workdir". When the bin/run script was used without parameters, it was generating error as it could not run the folder workdir/LinkTarget/Executable. Now, we print usage instructions in this case, or when help is requested with -h, -help or --help. Also, now user can get the list of executables with -l, -list or --list. In normal execution, the script's name is also printed. For example: $ ./bin/run minvcl Setting env variables and running workdir/LinkTarget/Executable/minvcl ... Change-Id: I5c62c300d5247f55d1d1cfd095cecffc979d494b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137626 Tested-by: Hossein <hossein@libreoffice.org> Reviewed-by: Hossein <hossein@libreoffice.org>