libbitcoin-database: fix test
This commit is contained in:
parent
ce441046f0
commit
754a74e289
1 changed files with 4 additions and 3 deletions
|
@ -40,9 +40,10 @@ class LibbitcoinDatabase < Formula
|
|||
return 0;
|
||||
}
|
||||
EOS
|
||||
system ENV.cxx, "-std=c++11", "test.cpp",
|
||||
"-lbitcoin", "-lbitcoin-database", "-lboost_system",
|
||||
"-o", "test"
|
||||
system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test",
|
||||
"-L#{Formula["libbitcoin"].opt_lib}", "-lbitcoin",
|
||||
"-L#{lib}", "-lbitcoin-database",
|
||||
"-L#{Formula["boost"].opt_lib}", "-lboost_system"
|
||||
system "./test"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue