2020-11-10 15:26:38 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(HexEditor)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
|
2020-11-12 22:50:23 +01:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_search_module(GLFW REQUIRED glfw3)
|
|
|
|
find_package(OpenGL REQUIRED)
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
include_directories(include ${GLFW_INCLUDE_DIRS} libs/ImGui/include libs/glad/include)
|
2020-11-15 15:48:30 +01:00
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -DIMGUI_IMPL_OPENGL_LOADER_GLAD")
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++ -static-libgcc -static")
|
|
|
|
endif (WIN32)
|
2020-11-12 22:50:23 +01:00
|
|
|
|
2020-11-11 00:13:09 +01:00
|
|
|
add_executable(ImHex
|
2020-11-10 15:26:38 +01:00
|
|
|
source/main.cpp
|
|
|
|
source/window.cpp
|
2020-11-10 21:31:04 +01:00
|
|
|
source/utils.cpp
|
2020-11-12 12:00:50 +01:00
|
|
|
source/crypto.cpp
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-17 02:31:51 +01:00
|
|
|
source/lang/preprocessor.cpp
|
|
|
|
source/lang/lexer.cpp
|
|
|
|
source/lang/parser.cpp
|
|
|
|
source/lang/validator.cpp
|
2020-11-19 11:36:52 +01:00
|
|
|
source/lang/evaluator.cpp
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-11 09:18:35 +01:00
|
|
|
source/provider/file_provider.cpp
|
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
source/views/view_hexeditor.cpp
|
|
|
|
source/views/view_pattern.cpp
|
|
|
|
source/views/view_pattern_data.cpp
|
2020-11-11 00:13:09 +01:00
|
|
|
source/views/view_hashes.cpp
|
2020-11-12 09:38:52 +01:00
|
|
|
source/views/view_information.cpp
|
2020-11-14 21:16:03 +01:00
|
|
|
source/views/view_help.cpp
|
2020-11-15 00:46:38 +01:00
|
|
|
source/views/view_tools.cpp
|
2020-11-15 01:42:43 +01:00
|
|
|
source/views/view_strings.cpp
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
libs/glad/source/glad.c
|
|
|
|
|
|
|
|
libs/ImGui/source/imgui.cpp
|
|
|
|
libs/ImGui/source/imgui_draw.cpp
|
|
|
|
libs/ImGui/source/imgui_widgets.cpp
|
2020-11-19 21:19:27 +01:00
|
|
|
libs/ImGui/source/imgui_demo.cpp
|
2020-11-10 15:26:38 +01:00
|
|
|
libs/ImGui/source/imgui_impl_glfw.cpp
|
|
|
|
libs/ImGui/source/imgui_impl_opengl3.cpp
|
2020-11-17 15:38:24 +01:00
|
|
|
libs/ImGui/source/ImGuiFileBrowser.cpp
|
2020-11-10 17:34:16 +01:00
|
|
|
|
2020-11-20 16:50:21 +01:00
|
|
|
resource.rc
|
2020-11-10 15:26:38 +01:00
|
|
|
)
|
|
|
|
|
2020-11-12 22:50:23 +01:00
|
|
|
if (WIN32)
|
2020-11-19 11:37:50 +01:00
|
|
|
target_link_libraries(ImHex libglfw3.a libgcc.a libstdc++.a libmagic.a libgnurx.a libtre.a libintl.a libiconv.a shlwapi.lib ws2_32.lib libcrypto.a libwinpthread.a)
|
2020-11-12 22:50:23 +01:00
|
|
|
endif (WIN32)
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-12 22:50:23 +01:00
|
|
|
if (UNIX)
|
|
|
|
target_link_libraries(ImHex libglfw.so libmagic.so libcrypto.so libdl.so)
|
|
|
|
endif (UNIX)
|