From 3612935ed966a7c5b1f40ac7766660659a6338fd Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Sun, 23 Jun 2019 16:50:09 +0200 Subject: [PATCH] documentation updates --- LaunchAPPL/LaunchAPPL.cfg.example | 13 +++++-------- README.md | 18 +++++++++++------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/LaunchAPPL/LaunchAPPL.cfg.example b/LaunchAPPL/LaunchAPPL.cfg.example index a82c192076..8eabeaef27 100644 --- a/LaunchAPPL/LaunchAPPL.cfg.example +++ b/LaunchAPPL/LaunchAPPL.cfg.example @@ -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 diff --git a/README.md b/README.md index 22bf991f9a..48ad1c657a 100644 --- a/README.md +++ b/README.md @@ -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