documentation updates

This commit is contained in:
Wolfgang Thaller 2019-06-23 16:50:09 +02:00
parent a486d8267c
commit 3612935ed9
2 changed files with 16 additions and 15 deletions

View File

@ -97,22 +97,19 @@
# ########### Executor
# No ROM files needed - an opensource reimplementation of classic Mac OS.
# I recommend my own "Executor 2000" fork at github.com/autc04/executor
# emulator = executor
# If Executor is in your PATH and the SystemFolder environment variable
# is already set up, nothing else is required.
# If Executor is in your PATH, nothing else is required.
# in case it's somewhere else:
# executor-path = /usr/local/bin/executor
# Path to the Executor system folder:
# override path to the Executor system folder:
# executor-system-folder = /path/to/ExecutorVolume/System Folder
# Pass more options to Executor.
# Note that each "word" needs to be specified separately:
# executor-option = -size # emulated screen size
# executor-option = 1600x1200
# executor-option = -appearance # uncommenting these two lines
# executor-option = windows # is seriously not recommended.
# executor-option = -bpp # screen depth
# executor-option = 1

View File

@ -157,10 +157,11 @@ Retro68-Specific Components:
- ResourceFiles library
- Rez
- PEFTools (MakePEF and MakeImport)
- MakeAPPL
- Elf2Mac
- LaunchAPPL
- libretro
- TestApps - a few tiny test programs
- AutomatedTests
- Sample Programs: Raytracer, HelloWorld, Launcher, Dialog
### binutils
@ -352,11 +353,14 @@ The directory `AutomatedTests` contains an autonated test suite that runs via
parts of Retro68.
The test suite will be configured automatically on sufficiently old Macs.
Everywhere else, first configure `LaunchAPPL` (see above) and then:
cs Retro68-build/build-target
cmake . -DRETRO68_LAUNCH_METHOD=minivmac # or executor, ...
make
Everywhere else, first configure `LaunchAPPL` (see above).
To run the tests, invoke `ctest` in the `build-target` directory.
To run the tests, invoke `ctest` in the `Retro68-build` directory, or in one
of the `build-target`, `build-target-ppc` or `build-target-carbon` directories.
ctest
You can also use the cmake variable `RETRO68_LAUNCH_METHOD` to override the LaunchAPPL default
for specific platforms:
cmake . -DRETRO68_LAUNCH_METHOD=minivmac