2021-05-29 19:52:18 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# Add your source files here #
|
|
|
|
if (WIN32)
|
2022-02-02 16:19:50 +00:00
|
|
|
|
2023-07-26 22:53:04 +00:00
|
|
|
include(ImHexPlugin)
|
|
|
|
add_imhex_plugin(
|
|
|
|
NAME
|
|
|
|
windows
|
|
|
|
SOURCES
|
2021-05-29 19:52:18 +00:00
|
|
|
source/plugin_windows.cpp
|
|
|
|
|
|
|
|
source/views/view_tty_console.cpp
|
2021-06-06 16:19:17 +00:00
|
|
|
|
2021-09-21 01:20:17 +00:00
|
|
|
source/content/ui_items.cpp
|
2021-10-31 15:28:10 +00:00
|
|
|
source/content/settings_entries.cpp
|
2023-01-01 01:29:38 +00:00
|
|
|
source/content/providers.cpp
|
2023-07-26 22:53:04 +00:00
|
|
|
INCLUDES
|
|
|
|
include
|
2021-05-29 19:52:18 +00:00
|
|
|
)
|
|
|
|
|
2023-05-20 11:37:57 +00:00
|
|
|
endif ()
|