AppleWin/source/frontends/qapple/CMakeLists.txt
Andrea Odetti 3733da1af7 Remove configuration from libappleii and delegate it to the frontends.
In qapple we use QSettings.


Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2017-10-14 19:18:44 +01:00

32 lines
473 B
CMake

set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
find_package(Qt5Widgets)
find_package(Qt5Gamepad)
add_executable(qapple
main.cpp
qapple.qrc
qapple.cpp
qresources.cpp
preferences.cpp
emulator.cpp
memorycontainer.cpp
graphicscache.cpp
gamepadpaddle.cpp
video.cpp
settings.cpp
commands.cpp
chunks.cpp
qhexedit.cpp
)
target_link_libraries(qapple
Qt5::Widgets
Qt5::Gamepad
appleii
)