aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
blob: 9305ac7fa2ec2b6ab57639fde57c994e9e0a0914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 Matthias P. Braendli
// SPDX-License-Identifier: GPL-2.0-only

extern crate cc;

fn main() {
    cc::Build::new()
        .file("src/kissattach.c")
        .compile("kissattach");


    /*
       .file("bar.c")
       .define("FOO", Some("bar"))
       .include("src")
       .compile("foo");
     */
}