OpenEmu Core plugin for VICE 3.4
In order to build VICE-core Xcode project, follow these steps to build the OpenEmu VICE dynamic library, liboex64sc.dylib
first.
Open a terminal and change to the deps/vice
path:
$ cd deps/vice
Create a build directory
$ mkdir cmake-build
Generate the build scripts (GNU make by default)
$ cmake -B cmake-build -DUSE_OEHEADLESS=YES -DUSE_ALT_CPU=YES -DCMAKE_BUILD_TYPE=RELEASE
Finally, execute a RELEASE
build
$ cmake --build cmake-build --target oex64sc --config Release -- -j`nproc --ignore=2`
NOTE
-- -j`nproc --ignore=2`
instructs make
to use all but two of your system's cores, which reduces build time considerably.