Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ Requirements:
* perl
* ruby 2.0 or later
* bison
* boost

Optional (for additional front-ends):
* SDL 2
Expand Down Expand Up @@ -147,6 +148,19 @@ applications to run.
When this is active, you can start executor with the `-logtraps` option to get logging
output for every MacOS function (trap) called by the running program.

### NO_STATIC_BOOST - Look for dynamically linked boost libraries (e.g. from MacPorts)

cmake . -DNO_STATIC_BOOST=TRUE

Without this, you will get the following error when trying to find dynamically linked boost libraries, such as from MacPorts:

CMake Error at /opt/local/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find Boost (missing: filesystem system program_options) (found
version "1.76.0")
Call Stack (most recent call first):
/opt/local/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake:594 (_FPHSA_FAILURE_MESSAGE)
/opt/local/share/cmake-3.24/Modules/FindBoost.cmake:2376 (find_package_handle_standard_args)
src/CMakeLists.txt:16 (find_package)

Overview
--------
Expand Down