Skip to content

Commit

Permalink
v1 revised
Browse files Browse the repository at this point in the history
- you no longer need to install python on your computer
- added makefile
  • Loading branch information
CardboardDog committed Apr 5, 2024
1 parent d18f08b commit 9dff500
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ bin/*.dll
bin/*.sh
bin/*.txt
bin/*.bat
bin/*.py
bin/*.pyd
bin/
lecode/lecode.bin
bin/windows-sendto
MarioKartWii.iso
Expand Down
2 changes: 1 addition & 1 deletion bin/readme
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Extract the WIT and SZS's bin folder to here.
Extract the WIT and SZS's bin folder to here. Then put python embedded 3.11.0 here.
Binary file added makedisc.exe
Binary file not shown.
9 changes: 9 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
SRC = ./src/
BIN = ./bin/
PY = makedisc
CXX = main
EXE = makedisc
CC = g++
all:
cp $(SRC)$(PY).py $(BIN)$(PY).py
$(CC) -o $(EXE).exe $(SRC)$(CXX).cxx
5 changes: 5 additions & 0 deletions src/main.cxx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <iostream>
int main(){
std::system(".\\bin\\python .\\bin\\makedisc.py");
return 0;
}
File renamed without changes.

0 comments on commit 9dff500

Please sign in to comment.