mirror of https://github.com/lukechilds/cc-rs.git
Alex Crichton
7 years ago
21 changed files with 21 additions and 22 deletions
@ -1,16 +1,15 @@ |
|||
[package] |
|||
name = "gcc-test" |
|||
name = "cc-test" |
|||
version = "0.1.0" |
|||
authors = ["Alex Crichton <alex@alexcrichton.com>"] |
|||
build = "build.rs" |
|||
|
|||
[lib] |
|||
name = "gcc_test" |
|||
name = "cc_test" |
|||
doctest = false |
|||
test = false |
|||
|
|||
[build-dependencies] |
|||
gcc = { path = ".." } |
|||
cc = { path = ".." } |
|||
|
|||
[features] |
|||
parallel = ["gcc/parallel"] |
|||
parallel = ["cc/parallel"] |
@ -1,6 +1,6 @@ |
|||
extern crate gcc_test; |
|||
extern crate cc_test; |
|||
|
|||
use gcc_test::*; |
|||
use cc_test::*; |
|||
|
|||
#[link(name = "OptLinkage", kind = "static")] |
|||
extern "C" { |
Loading…
Reference in new issue