diff options
-rw-r--r-- | makefile | 2 | ||||
-rw-r--r-- | pixel-client/makefile | 4 | ||||
-rw-r--r-- | readme.md | 2 | ||||
-rw-r--r-- | server/makefile | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -33,4 +33,4 @@ clean: make -C client clean make -C pixel-client clean make -C test-client clean - cargo clean + cargo +nightly clean diff --git a/pixel-client/makefile b/pixel-client/makefile index ffd0229d..08bc46bc 100644 --- a/pixel-client/makefile +++ b/pixel-client/makefile @@ -41,9 +41,9 @@ clean: rm -f assets/atlas.ta assets/atlas.meta.csv $(CLIENT): $(shell find src -type f) $(CLIENT_DEPS) - cargo build --release --bin pixelcurry + cargo +nightly build --release --bin pixelcurry $(IMPORT) $(EXPORT) $(PACK) $(COMPOSE): $(shell find tools/src -type f) - { cd tools; cargo build --release; } + { cd tools; cargo +nightly build --release; } %.ta: %.import.png $(IMPORT) $(IMPORT) $< $@ @@ -59,7 +59,7 @@ make pixel-client ### Usage ``` -cargo run --bin pixel-client +cargo +nightly run --bin pixel-client ``` ## Test Client diff --git a/server/makefile b/server/makefile index b80ff3b8..9f40d4b0 100644 --- a/server/makefile +++ b/server/makefile @@ -22,7 +22,7 @@ all: $(SERVER) $(REPLAYTOOL) clean: $(SERVER): $(shell find protocol src -type f) - cargo build --release + cargo +nightly build --release $(REPLAYTOOL): $(shell find protocol replaytool -type f) - { cd replaytool; cargo build --release; } + { cd replaytool; cargo +nightly build --release; } |