If you try to open Library/CMakeLists.txt using QtCreator on Linux machine you get the error above. The problem is:
set(CMAKE_EXE_LINKER_FLAGS “-framework AudioToolbox -framework CoreGraphics -framework QuartzCore -framework UIKit -framework OpenGLES”)
looks like
set(CMAKE_EXE_LINKER_FLAGS �-framework AudioToolbox -framework CoreGraphics -framework QuartzCore -framework UIKit -framework OpenGLES�)
in terminal. Removing quotes solves the error.
If you try to open Library/CMakeLists.txt using QtCreator on Linux machine you get the error above. The problem is:
set(CMAKE_EXE_LINKER_FLAGS “-framework AudioToolbox -framework CoreGraphics -framework QuartzCore -framework UIKit -framework OpenGLES”)looks like
set(CMAKE_EXE_LINKER_FLAGS �-framework AudioToolbox -framework CoreGraphics -framework QuartzCore -framework UIKit -framework OpenGLES�)in terminal. Removing quotes solves the error.