19 lines
293 B
CMake
19 lines
293 B
CMake
|
cmake_minimum_required(VERSION 3.16)
|
||
|
|
||
|
include(ImHexPlugin)
|
||
|
|
||
|
add_imhex_plugin(
|
||
|
NAME
|
||
|
ui
|
||
|
SOURCES
|
||
|
source/library_ui.cpp
|
||
|
|
||
|
source/ui/hex_editor.cpp
|
||
|
source/ui/pattern_drawer.cpp
|
||
|
INCLUDES
|
||
|
include
|
||
|
LIBRARIES
|
||
|
libpl-gen
|
||
|
LIBRARY_PLUGIN
|
||
|
)
|