package An official xmake package repository
https://xrepo.xmake.io/
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.
30 lines
1016 B
30 lines
1016 B
2 years ago
|
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("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)
|