AppleWin/source/frontends/qapple/CMakeLists.txt
Andrea Odetti c2baf8dc83 Use QHexView rather than qhexedit2.
It seems more supported and offers comments and metadata highlights.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-12-01 14:29:13 +00:00

37 lines
578 B
CMake

set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
add_subdirectory(QHexView)
add_executable(qapple
main.cpp
qapple.qrc
qapple.cpp
qresources.cpp
preferences.cpp
emulator.cpp
memorycontainer.cpp
gamepadpaddle.cpp
video.cpp
registry.cpp
configuration.cpp
audiogenerator.cpp
loggingcategory.cpp
viewbuffer.cpp
${QHEXVIEW_SOURCES}
)
find_package(Qt5 REQUIRED
COMPONENTS Widgets Gamepad Multimedia
)
target_link_libraries(qapple
Qt5::Widgets
Qt5::Gamepad
Qt5::Multimedia
appleii
)