You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package("trompeloeil")
|
|
|
|
|
|
|
|
set_kind("library", {headeronly = true})
|
|
|
|
set_homepage("https://github.com/rollbear/trompeloeil")
|
|
|
|
set_description("A thread-safe header-only mocking framework for C++11/14 using the Boost Software License 1.0")
|
|
|
|
set_license("BSL-1.0")
|
|
|
|
|
|
|
|
add_urls("https://github.com/rollbear/trompeloeil/archive/refs/tags/$(version).tar.gz")
|
|
|
|
add_versions("v47", "4a1d79260c1e49e065efe0817c8b9646098ba27eed1802b0c3ba7d959e4e5e84")
|
|
|
|
add_versions("v43", "86a0afa2e97347202a0a883ab43da78c1d4bfff0d6cb93205cfc433d0d9eb9eb")
|
|
|
|
|
|
|
|
on_install(function (package)
|
|
|
|
os.cp("include", package:installdir())
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_test(function (package)
|
|
|
|
assert(package:check_cxxsnippets({test = [[
|
|
|
|
class Interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool foo(int, std::string& s) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Mock : public Interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MAKE_MOCK2(foo, bool(int, std::string&),override);
|
|
|
|
};
|
|
|
|
]]}, {configs = {languages = "c++14"}, includes = { "trompeloeil.hpp" }}))
|
|
|
|
end)
|