Skip to content

Commit

Permalink
win32 plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaji Khan committed Oct 21, 2024
1 parent 76a57ea commit 141db20
Show file tree
Hide file tree
Showing 292 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ clean:
rm -v *.o amprack

missing: SharedLibrary.o missing.cc
$(CPP) missing.cc SharedLibrary.o -o missing -std=$(CPP)17 $(LV2) -I/usr/include/lv2
$(CPP) missing.cc SharedLibrary.o log.o -o missing -std=c++17 $(LV2) -I/usr/include/lv2 $(GTK) $(DLFCN)

test: lv2_test.c
$(CC) lv2_test.c $(LV2) -I/usr/include/lv2 -o lv2_test
Expand Down
8 changes: 8 additions & 0 deletions dll_renamer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import os, glob

g = glob.glob ("libs/win32/*dll")

for l in g:
dest = l.replace (".dll", ".so")
print (f"{l} -> {dest}")
os.rename (l, dest)
Loading

0 comments on commit 141db20

Please sign in to comment.