Skip to content

Commit 608d39f

Browse files
committed
Merge branch 'editor'
2 parents 514397e + 40fa25a commit 608d39f

File tree

8,688 files changed

+4665
-22709
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,688 files changed

+4665
-22709
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@
3737
build
3838

3939
# Binaries
40-
bitPresent
40+
BitPresent
41+
BitPresentEditor

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
"typeinfo": "cpp",
6767
"valarray": "cpp",
6868
"variant": "cpp",
69-
"future": "cpp"
69+
"future": "cpp",
70+
"filesystem": "cpp"
7071
}
7172

7273
}

Images/Valorant_logo.jpg

9.32 KB
Loading

Linux/.cache/src/main.d

Lines changed: 0 additions & 2 deletions
This file was deleted.

Linux/.cache/src/main.o

-256 KB
Binary file not shown.

Linux/Makefile

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,44 @@
11
vpath %.cc src
22

3-
PRODUCT := bitPresent
3+
PRODUCT := BitPresent
4+
PRODUCT2 := BitPresentEditor
45

56
CXX := g++
67
CXXFLAGS := -c -std=c++17 `wx-config-gtk3 --cxxflags`
78
CXXLIBS := -lSDL2 -lSDL2_ttf -lSDL2_image -lhpdf `wx-config-gtk3 --libs`
89
CXXINCDIRS := -I.
910

10-
SOURCE := $(shell find . -name *.cc)
11+
SOURCE := $(shell find src/ -name *.cc)
1112
OBJECTS := $(patsubst %.cc,.cache/%.o,$(SOURCE))
1213
DEPFILES := $(patsubst %.cc,.cache/%.d,$(SOURCE))
1314

1415
NUMOPS := $(shell echo $(OBJECTS) | wc -w)
1516
OPS := 0
1617

18+
all: $(PRODUCT) $(PRODUCT2)
19+
1720
$(PRODUCT): $(OBJECTS)
21+
$(eval OPS=$(shell echo $$(($(OPS)-$(OPS)))))
1822
@echo -e "Linking CXX objects to: \033[0;33m$@\033[0m"
1923
@$(CXX) $(CXXLIBS) $^ -o $@
2024

21-
.cache/%.o: %.cc
22-
$(eval OPS=$(shell echo $$(($(OPS)+1))))
23-
@echo -e "\033[0;32m[$(OPS)/$(NUMOPS)]\033[0m Building CXX object: \033[0;33m$@\033[0m"
24-
@$(CXX) $(CXXFLAGS) $(CXXINCDIRS) -o $@ $<
25-
26-
.cache/%.d: %.cc
25+
.cache/src/%.d: src/%.cc
2726
$(eval OPS=$(shell echo $$(($(OPS)+1))))
2827
@echo -e "\033[0;34m[$(OPS)/$(NUMOPS)]\033[0m Generating CXX dependency: \033[0;33m$@\033[0m"
2928
@$(CXX) $(CXXINCDIRS) -MM $< > $@
3029

30+
.cache/src/%.o: src/%.cc
31+
$(eval OPS=$(shell echo $$(($(OPS)+1))))
32+
@echo -e "\033[0;32m[$(OPS)/$(NUMOPS)]\033[0m Building CXX object: \033[0;33m$@\033[0m"
33+
@$(CXX) $(CXXFLAGS) $(CXXINCDIRS) -o $@ $<
34+
3135
init:
3236
@mkdir -p .cache/src
3337
@rsync -a -f"+ */" -f"- *" src/ .cache/src/
3438

3539
delDirs:
3640
@rm -R .cache
41+
@rm $(PRODUCT)
3742

3843
clean: delDirs init
3944

Linux/bitPresent

-356 KB
Binary file not shown.

Linux/dat/BPLogo.png

-12.1 KB
Binary file not shown.

Linux/dat/BTLogo.png

-15 KB
Binary file not shown.

Linux/dat/Logo.png

48.2 KB
Loading

0 commit comments

Comments
 (0)