* CMake build infrastructure The squashed commit that builds and packages releases for the SIMH simulator suite with CMake, version 3.14 or newer. See README-CMake.md for documentation.
38 lines
1,014 B
CMake
38 lines
1,014 B
CMake
## CDC1700 simulator
|
|
##
|
|
## This is an automagically generated file. Do NOT EDIT.
|
|
## Any changes you make will be overwritten!!
|
|
##
|
|
## Make changes to the SIMH top-level makefile and then run the
|
|
## "cmake/generate.py" script to regenerate these files.
|
|
##
|
|
## cd cmake; python -m generate --help
|
|
##
|
|
## ------------------------------------------------------------
|
|
|
|
if (HAVE_UNITY_FRAMEWORK AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/CMakeLists.txt")
|
|
add_subdirectory(unit-tests)
|
|
endif ()
|
|
|
|
add_simulator(cdc1700
|
|
SOURCES
|
|
cdc1700_cpu.c
|
|
cdc1700_dis.c
|
|
cdc1700_io.c
|
|
cdc1700_sys.c
|
|
cdc1700_dev1.c
|
|
cdc1700_mt.c
|
|
cdc1700_dc.c
|
|
cdc1700_iofw.c
|
|
cdc1700_lp.c
|
|
cdc1700_dp.c
|
|
cdc1700_cd.c
|
|
cdc1700_sym.c
|
|
cdc1700_rtc.c
|
|
cdc1700_drm.c
|
|
cdc1700_msos5.c
|
|
INCLUDES
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
LABEL CDC1700
|
|
PKG_FAMILY cdc1700_family
|
|
TEST cdc1700)
|