mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-24 16:30:58 -05:00
Add ext/
This commit is contained in:
18
ext/Makefile
Normal file
18
ext/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
all: rust csharp
|
||||
|
||||
rust:
|
||||
echo "Installing Rust dependencies"
|
||||
git clone --depth 1 --recursive https://github.com/rust-lang/rust.git rust
|
||||
git clone --depth 1 --recursive https://github.com/phildawes/racer.git racer-src
|
||||
cd racer-src && cargo build --release
|
||||
mv racer-src/target/release/racer ./racer
|
||||
rm -rf racer-src
|
||||
|
||||
csharp:
|
||||
echo "Installing C# dependencies"
|
||||
git clone --depth 1 --recursive https://github.com/OmniSharp/omnisharp-server omnisharp
|
||||
cd omnisharp && xbuild
|
||||
mv omnisharp/bin/Debug/OmniSharp.exe ./OmniSharp.exe
|
||||
rm -rf omnisharp
|
||||
|
Reference in New Issue
Block a user