Initial libvlc implementation, Makefiles, dev log detailing libvlc testing.
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
SOURCES := $(shell find src/main/nim -name "*.nim")
|
||||
|
||||
wdiwtlt.exe: $(SOURCES)
|
||||
nimble build -d:mingw --cpu:amd64
|
||||
|
||||
.PHONY: run-win
|
||||
run-win: wdiwtlt.exe
|
||||
cp wdiwtlt.exe /home/jdb/winhome/programs/vlc-3.0.18
|
||||
/home/jdb/winhome/programs/vlc-3.0.18/wdiwtlt.exe
|
||||
|
||||
.PHONY: update-version
|
||||
update-version:
|
||||
update_nim_package_version wdiwtlt src/main/private/version.nim
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
nim c -r src/test/nim/runner
|
Reference in New Issue
Block a user