mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-05 19:42:03 +02:00
Support building with rust stable, using syntex.
This commit is contained in:
parent
5059432090
commit
d27c4ca752
13 changed files with 205 additions and 92 deletions
|
@ -1,12 +1,8 @@
|
|||
#![feature(plugin)]
|
||||
#![plugin(mod_path)]
|
||||
|
||||
extern crate protobuf;
|
||||
|
||||
mod_path! keyexchange (concat!(env!("OUT_DIR"), "/keyexchange.rs"));
|
||||
mod_path! authentication (concat!(env!("OUT_DIR"), "/authentication.rs"));
|
||||
mod_path! mercury (concat!(env!("OUT_DIR"), "/mercury.rs"));
|
||||
mod_path! metadata (concat!(env!("OUT_DIR"), "/metadata.rs"));
|
||||
mod_path! pubsub (concat!(env!("OUT_DIR"), "/pubsub.rs"));
|
||||
mod_path! spirc (concat!(env!("OUT_DIR"), "/spirc.rs"));
|
||||
|
||||
include! (concat!(env!("OUT_DIR"), "/authentication.rs"));
|
||||
include! (concat!(env!("OUT_DIR"), "/keyexchange.rs"));
|
||||
include! (concat!(env!("OUT_DIR"), "/mercury.rs"));
|
||||
include! (concat!(env!("OUT_DIR"), "/metadata.rs"));
|
||||
include! (concat!(env!("OUT_DIR"), "/pubsub.rs"));
|
||||
include! (concat!(env!("OUT_DIR"), "/spirc.rs"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue