Browse Source

Compile .mm files with CXX rather than CC

pull/1940/head
Alexis Hildebrandt 3 months ago
parent
commit
3b0f985639
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      compile.mk

+ 1
- 1
compile.mk View File

@@ -88,7 +88,7 @@ build/%.m.o: %.m

build/%.mm.o: %.mm
@mkdir -p $(@D)
$(CC) $(CXXFLAGS) -c -o $@ $<
$(CXX) $(CXXFLAGS) -c -o $@ $<

build/%.bin.o: %
@mkdir -p $(@D)


Loading…
Cancel
Save