Add icon
This commit is contained in:
parent
cf209cc248
commit
a6dd9e7283
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
|
||||
cmake-build-debug/
|
||||
|
||||
cmake-build-release/
|
||||
|
@ -3,13 +3,11 @@ project(HexEditor)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
|
||||
find_library(GLFW REQUIRED glfw3)
|
||||
find_library(GLFW REQUIRED glfw3s)
|
||||
find_library(OPENGL REQUIRED OpenGL)
|
||||
|
||||
include_directories(include ${GLFW_INCLUDE_DIRS} libs/ImGui/include libs/glad/include)
|
||||
|
||||
message(STATUS ${GLFW_STATIC_LIBRARIES})
|
||||
|
||||
add_executable(HexEditor
|
||||
source/main.cpp
|
||||
source/window.cpp
|
||||
@ -25,6 +23,8 @@ add_executable(HexEditor
|
||||
libs/ImGui/source/imgui_widgets.cpp
|
||||
libs/ImGui/source/imgui_impl_glfw.cpp
|
||||
libs/ImGui/source/imgui_impl_opengl3.cpp
|
||||
|
||||
res.rc
|
||||
)
|
||||
|
||||
target_link_libraries(HexEditor glfw3)
|
||||
|
Loading…
Reference in New Issue
Block a user