Raw
1 // This program is free software; you can redistribute it and/or modify
2 // it under the terms of the GNU General Public License as published by
3 // the Free Software Foundation: version 2 of the License, dated June 1991.
4 //
5 // This program is distributed in the hope that it will be useful,
6 // but WITHOUT ANY WARRANTY; without even the implied warranty of
7 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8 // GNU General Public License for more details.
9 //
10 // You should have received a copy of the GNU General Public License along
11 // with this program; if not, see <https://www.gnu.org/licenses/>.
12
13 fn main() {
14 println!("cargo:rustc-link-search=.");
15 println!("cargo:rustc-link-lib=git");
16 println!("cargo:rustc-link-lib=z");
17 }