This website requires JavaScript.
Explore
Help
Sign In
M-Labs
/
libfringe
Watch
3
Star
0
Fork
You've already forked libfringe
2
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
5ae54da9c2
libfringe
/
build.rs
6 lines
94 B
Rust
Raw
Normal View
History
Unescape
Escape
simplify build script
2015-03-27 10:48:51 +08:00
extern
crate
gcc
;
initial commit
2014-12-23 11:24:40 +08:00
fn
main
(
)
{
simplify build script
2015-03-27 10:48:51 +08:00
gcc
::
compile_library
(
"
libcontext.a
"
,
&
[
"
src/platform.c
"
]
)
;
initial commit
2014-12-23 11:24:40 +08:00
}