From e8077c7eaf8e0166a2dac3d36fe78e56f3560a62 Mon Sep 17 00:00:00 2001 From: olel Date: Mon, 3 Jul 2023 09:41:28 +0200 Subject: [PATCH 1/2] Updated homebrew library path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b3384dc0..ec4bd925a 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Depending on your version of OS X the GUI will read user defined Environment var If you don't use Homebrew you will need to download and install the same dependencies as given in the linux instuctions. You may need to export the libs with $LIBRARY_PATH and or supply the include folders with $CPATH before building. - export LIBRARY_PATH=/usr/local/opt/gst-plugins-base/lib:/usr/local/opt/gstreamer/lib:/usr/local/lib:/usr/local/opt/glib/lib:/usr/local/opt/gettext/lib + export LIBRARY_PATH=/opt/homebrew/opt/gst-plugins-base/lib:/opt/homebrew/opt/gstreamer/lib:/opt/homebrew/lib:/opt/homebrew/opt/glib/lib:/opt/homebrew/opt/gettext/lib Download the source code: From 4e717e1437d19985b577ac8a8ad32be19d4a6433 Mon Sep 17 00:00:00 2001 From: olel Date: Mon, 3 Jul 2023 09:41:56 +0200 Subject: [PATCH 2/2] Set C++-11 standard --- RetroFE/Source/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/RetroFE/Source/CMakeLists.txt b/RetroFE/Source/CMakeLists.txt index f26ec7027..c2051b742 100644 --- a/RetroFE/Source/CMakeLists.txt +++ b/RetroFE/Source/CMakeLists.txt @@ -201,6 +201,7 @@ set(RETROFE_SOURCES set(EXECUTABLE_OUTPUT_PATH "${RETROFE_DIR}/Build" CACHE PATH "Build directory" FORCE) set(LIBRARY_OUTPUT_PATH "${RETROFE_DIR}/Build" CACHE PATH "Build directory" FORCE) +set (CMAKE_CXX_STANDARD 11) include_directories(${RETROFE_INCLUDE_DIRS}) add_executable(retrofe ${RETROFE_SOURCES} ${RETROFE_HEADERS})