Skip to content

Commit

Permalink
Fix OSX Startup
Browse files Browse the repository at this point in the history
  • Loading branch information
fred-dev committed Sep 28, 2023
1 parent 1d6bf27 commit 47c0c21
Show file tree
Hide file tree
Showing 15 changed files with 1,753 additions and 253 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ docs/*

# bin/data Folder
example*/bin/data/*
/bin
!example*/bin/data/MIDI_OSC_SETTINGS.json

# Project files
Expand Down
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Attempt to load a config.make file.
# If none is found, project defaults in config.project.make will be used.
ifneq ($(wildcard config.make),)
include config.make
endif

# make sure the the OF_ROOT location is defined
ifndef OF_ROOT
OF_ROOT=$(realpath ../../..)
endif

# call the project makefile!
include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk
Loading

0 comments on commit 47c0c21

Please sign in to comment.