Skip to content

Commit

Permalink
Removed auto compilation of ptx and made compatible with windows (msvc)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrlvi committed Dec 6, 2021
1 parent af508a6 commit 1551f6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kaspa-miner"
version = "0.1.3"
version = "0.1.3-GPU"
edition = "2021"
license = "MIT/Apache-2.0"
authors = ["Elichai <elichai.turkel@gmail.com>"]
Expand Down
4 changes: 1 addition & 3 deletions build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::env;
use std::path::Path;

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
Expand All @@ -8,6 +6,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.compile(
&["proto/rpc.proto", "proto/p2p.proto", "proto/messages.proto"],
&["proto"],
);
)?;
Ok(())
}

0 comments on commit 1551f6e

Please sign in to comment.