Initial libvlc implementation, Makefiles, dev log detailing libvlc testing.

This commit is contained in:
2022-10-16 22:43:24 -05:00
parent e429d2656e
commit 5493fd4143
5 changed files with 243 additions and 0 deletions

17
Makefile Normal file
View 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