isivisi / questionablemodules

My collection of VCVRack modules
Other
4 stars 1 forks source link

Update Makefile to enforce C++17 build #34

Closed SteveRussell33 closed 11 months ago

SteveRussell33 commented 11 months ago

Previously:

g++ -std=c++11 -Wsuggest-override  -std=c++17 -I ./src/gmtl 
[snipped]

Now:

g++ -std=c++17 -Wsuggest-override -I ./src/gmtl
[snipped]
isivisi commented 11 months ago

Ah, I just assumed it overwrote the previous because it ended up working. This seems to be a more proper solution, thank you :)

SteveRussell33 commented 11 months ago

You're welcome!