1
0
mirror of synced 2024-11-13 18:50:53 +01:00
ImHex/plugins/windows/CMakeLists.txt

25 lines
457 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.16)
if (WIN32)
include(ImHexPlugin)
add_imhex_plugin(
NAME
windows
SOURCES
source/plugin_windows.cpp
source/views/view_tty_console.cpp
2021-09-21 03:20:17 +02:00
source/content/ui_items.cpp
source/content/settings_entries.cpp
INCLUDES
include
LIBRARIES
ui
fonts
${JTHREAD_LIBRARIES}
)
endif ()