mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-11-19 12:31:59 +00:00
259 lines
6.1 KiB
CMake
259 lines
6.1 KiB
CMake
cmake_minimum_required(VERSION 3.22.1)
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE TRUE CACHE BOOL "Echo make commands.")
|
|
set(PACKAGE_SUITE TRUE CACHE BOOL "Build entire suite of packages; otherwise just ZIP file.")
|
|
|
|
set(CMAKE_BUILD_TYPE RelWithDebInfo)
|
|
set(CMAKE_FIND_PACKAGE_PREFER_CONFIG TRUE)
|
|
|
|
|
|
|
|
|
|
|
|
set(APP_NAME epple2)
|
|
|
|
project(${APP_NAME}
|
|
VERSION 2.0.0
|
|
DESCRIPTION "Apple II emulator"
|
|
HOMEPAGE_URL https://github.com/cmosher01/Epple-II
|
|
LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(PROJECT_FOURCC epl2)
|
|
set(PROJECT_VENDOR "nu.mine.mosher")
|
|
set(CPACK_PACKAGE_VENDOR "${PROJECT_VENDOR}")
|
|
set(CPACK_PACKAGE_CONTACT "cmosher01@gmail.com")
|
|
set(CPACK_PACKAGE_DESCRIPTION "${PROJECT_DESCRIPTION}")
|
|
|
|
|
|
|
|
file(TO_CMAKE_PATH "${PROJECT_BINARY_DIR}/CMakeLists.txt" LOC_PATH)
|
|
if(EXISTS "${LOC_PATH}")
|
|
message(FATAL_ERROR "You cannot build in a source directory; make a build subdirectory.")
|
|
endif()
|
|
|
|
|
|
|
|
if(WIN32)
|
|
set(CMAKE_INSTALL_PREFIX "C:/Program Files/${PROJECT_NAME}")
|
|
unset(CPACK_PACKAGING_INSTALL_PREFIX)
|
|
elseif(APPLE)
|
|
unset(CMAKE_INSTALL_PREFIX)
|
|
unset(CPACK_PACKAGING_INSTALL_PREFIX)
|
|
else()
|
|
set(CMAKE_INSTALL_PREFIX "/opt/${CPACK_PACKAGE_VENDOR}/${PROJECT_NAME}")
|
|
set(CPACK_PACKAGING_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
|
endif()
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
include_directories(BEFORE "include")
|
|
|
|
|
|
|
|
set(sources
|
|
a2colorsobserved.cpp
|
|
addressbus.cpp
|
|
analogtv.cpp
|
|
apple2.cpp
|
|
applentsc.cpp
|
|
card.cpp
|
|
cassette.cpp
|
|
cassettein.cpp
|
|
cassetteout.cpp
|
|
Circuit.cpp
|
|
clipboardhandler.cpp
|
|
clockcard.cpp
|
|
Common.cpp
|
|
configep2.cpp
|
|
Cpu6502.cpp
|
|
Cpu6502Helper.cpp
|
|
cpu.cpp
|
|
disk2readwritehead.cpp
|
|
disk2steppermotorcan.cpp
|
|
disk2steppermotor.cpp
|
|
disk2steppermotorrotor.cpp
|
|
diskcontroller.cpp
|
|
drive.cpp
|
|
drivemotor.cpp
|
|
e2filesystem.cpp
|
|
E2wxApp.cpp
|
|
E2wxFrame.cpp
|
|
emptyslot.cpp
|
|
Emu6502.cpp
|
|
emulator.cpp
|
|
filterchroma.cpp
|
|
filterluma.cpp
|
|
firmwarecard.cpp
|
|
gui.cpp
|
|
hypermode.cpp
|
|
keyboardbuffermode.cpp
|
|
keyboard.cpp
|
|
languagecard.cpp
|
|
lss.cpp
|
|
magneticfield.cpp
|
|
main.cpp
|
|
memorychip.cpp
|
|
memory.cpp
|
|
memoryrandomaccess.cpp
|
|
memoryrow.cpp
|
|
memorystrapping.cpp
|
|
movable.cpp
|
|
paddlebuttonstates.cpp
|
|
paddles.cpp
|
|
picturegenerator.cpp
|
|
powerupreset.cpp
|
|
PreferencesDialog.cpp
|
|
screenimage.cpp
|
|
SegmentCache.cpp
|
|
slots.cpp
|
|
speakerclicker.cpp
|
|
standardin.cpp
|
|
standardinproducer.cpp
|
|
standardout.cpp
|
|
StateCalculator.cpp
|
|
textcharacters.cpp
|
|
timable.cpp
|
|
tinyfiledialogs.cpp
|
|
Trace.cpp
|
|
TransCache.cpp
|
|
TransNetwork.cpp
|
|
videoaddressing.cpp
|
|
video.cpp
|
|
videomode.cpp
|
|
videostaticgenerator.cpp
|
|
wozfile.cpp
|
|
)
|
|
list(TRANSFORM sources PREPEND "src/")
|
|
|
|
set(resources
|
|
epple2.xrc
|
|
epple2.png
|
|
conf/epple2.conf
|
|
conf/epple2.rev0bare.conf
|
|
conf/epple2.a2bare.conf
|
|
conf/epple2.a2dos31.conf
|
|
conf/epple2.a2dos33.conf
|
|
conf/epple2.a2loaded.conf
|
|
conf/epple2.a2pbare.conf
|
|
conf/epple2.a2pdos33.conf
|
|
conf/epple2.a2ploaded.conf
|
|
conf/epple2.visual6502.conf
|
|
cpu/transistors
|
|
rom/epple2sys.a65
|
|
rom/stdout.a65
|
|
rom/clock.a65
|
|
rom/stdin.a65
|
|
apple/stage/13-disk2.a65
|
|
apple/stage/16-disk2.a65
|
|
apple/stage/a2-monitor.a65
|
|
apple/stage/a2-intbasic.a65
|
|
apple/stage/a2-other.a65
|
|
apple/stage/a2p-monitor.a65
|
|
apple/stage/a2p-applesoft.a65
|
|
apple/stage/original31sysmas.d13.woz
|
|
apple/stage/original32sysmasstd.d13.woz
|
|
apple/stage/original32sysmaspls.d13.woz
|
|
apple/stage/original321sysmasstd.d13.woz
|
|
apple/stage/original321sysmaspls.d13.woz
|
|
apple/stage/original330sysmas.do.woz
|
|
apple/stage/original331sysmas.do.woz
|
|
apple/stage/original332sysmas.do.woz
|
|
)
|
|
list(TRANSFORM resources PREPEND "share/Resources/")
|
|
|
|
add_executable(${APP_NAME} WIN32 MACOSX_BUNDLE ${sources} ${resources})
|
|
|
|
find_package(SDL2 REQUIRED)
|
|
target_include_directories(${APP_NAME} PRIVATE ${SDL2_INCLUDE_DIRS})
|
|
target_link_libraries(${APP_NAME} PRIVATE ${SDL2_LIBRARIES})
|
|
|
|
find_package(Boost REQUIRED COMPONENTS log filesystem)
|
|
# These settings must match those of the installed boost libraries.
|
|
# Use objdump to check the "namespace", such as "v2_mt_nt6"
|
|
# https://www.boost.org/doc/libs/master/libs/log/doc/html/log/rationale/namespace_mangling.html
|
|
target_compile_definitions(${APP_NAME} PRIVATE
|
|
BOOST_ALL_DYN_LINK
|
|
BOOST_ATOMIC_DYN_LINK
|
|
BOOST_CHRONO_DYN_LINK
|
|
BOOST_FILESYSTEM_DYN_LINK
|
|
BOOST_LIB_DIAGNOSTIC
|
|
BOOST_LOG_DYN_LINK
|
|
BOOST_REGEX_DYN_LINK
|
|
BOOST_THREAD_DYN_LINK
|
|
BOOST_ALL_NO_LIB
|
|
BOOST_LIB_DIAGNOSTIC
|
|
BOOST_USE_WINAPI_VERSION=0x0600)
|
|
target_link_libraries(${APP_NAME} PRIVATE ${Boost_LIBRARIES})
|
|
|
|
find_package(wxWidgets REQUIRED COMPONENTS base core xrc qa)
|
|
include(${wxWidgets_USE_FILE})
|
|
target_link_libraries(${APP_NAME} PRIVATE ${wxWidgets_LIBRARIES})
|
|
|
|
|
|
|
|
configure_file(src/config.h.in config.h)
|
|
include_directories(${PROJECT_BINARY_DIR})
|
|
|
|
|
|
|
|
# TODO: can we remove this without being too backwardly incompatible?
|
|
target_compile_definitions(${APP_NAME} PRIVATE ETCDIR="${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_SYSCONFDIR}")
|
|
|
|
|
|
|
|
set_target_properties(${APP_NAME} PROPERTIES RESOURCE "${resources}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include(InstallRequiredSystemLibraries)
|
|
|
|
if(APPLE)
|
|
set_target_properties(${APP_NAME} PROPERTIES
|
|
MACOSX_BUNDLE_INFO_PLIST ${PROJECT_BINARY_DIR}/Info.plist)
|
|
install(TARGETS ${APP_NAME}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
BUNDLE DESTINATION .)
|
|
configure_file(share/FixBundle.cmake.in ${PROJECT_BINARY_DIR}/FixBundle.cmake @ONLY)
|
|
install(SCRIPT ${PROJECT_BINARY_DIR}/FixBundle.cmake)
|
|
elseif(WIN32)
|
|
install(TARGETS ${APP_NAME}
|
|
RUNTIME_DEPENDENCIES
|
|
DIRECTORIES ${CMAKE_SYSTEM_LIBRARY_PATH}
|
|
PRE_EXCLUDE_REGEXES "api-ms-" "ext-ms-"
|
|
POST_EXCLUDE_REGEXES ".*system32/.*\\.dll"
|
|
BUNDLE DESTINATION .
|
|
RESOURCE DESTINATION share/Resources)
|
|
else()
|
|
install(TARGETS ${APP_NAME}
|
|
RUNTIME_DEPENDENCIES
|
|
DIRECTORIES ${CMAKE_SYSTEM_LIBRARY_PATH}
|
|
RESOURCE DESTINATION share/Resources)
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
set(CPACK_GENERATOR ZIP)
|
|
|
|
if(PACKAGE_SUITE)
|
|
set(CPACK_GENERATOR ${CPACK_GENERATOR} TGZ 7Z)
|
|
if(APPLE)
|
|
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${PROJECT_VERSION}-macOS")
|
|
configure_file(share/Info.plist.in ${PROJECT_BINARY_DIR}/Info.plist)
|
|
set(CPACK_GENERATOR ${CPACK_GENERATOR} DragNDrop)
|
|
elseif(WIN32)
|
|
set(CPACK_GENERATOR ${CPACK_GENERATOR} NSIS)
|
|
else()
|
|
set(CPACK_GENERATOR ${CPACK_GENERATOR} DEB)
|
|
endif()
|
|
endif()
|
|
|
|
include(CPack)
|