GLFWをHomebrewでインストールしてWindowを立ち上げるプログラムをビルド
VSCodeで進めていたけど、やっぱりCLionに移行 ImGuiのGLFW OpenGL3サンプルをmakeでビルドしようとして詰まった ライブラリのlink周りのエラー
imgui/examples/example_glfw_opengl3 at master · ocornut/imgui
c++ -o example_glfw_opengl3 main.o imgui.o imgui_demo.o imgui_draw.o imgui_tables.o imgui_widgets.o imgui_impl_glfw.o imgui_impl_opengl3.o -I../.. -I../../backends -g -Wall -Wformat -I/usr/local/include -I/opt/local/include -I/opt/homebrew/include -framework OpenGL -framework Cocoa -framework IOKit -framework CoreVideo -L/usr/local/lib -L/opt/local/lib -L/opt/homebrew/lib -lglfw
ld: warning: directory not found for option '-L/opt/local/lib'
ld: warning: directory not found for option '-L/opt/homebrew/lib'
ld: library not found for -lglfw
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [example_glfw_opengl3] Error 1
やりたいことのイメージが湧いたのでIssue 2つ立てた