It is recommended that you use VS Code for this project.
To build and run this project, you will need the following:
- Node.js
- PNPM, and then execute the following in the project folder:
pnpm install
. - Emscripten, and make sure that
emcc
is available in PATH.
You may also need to changeconfigurations.includePath
in the .vscode/c_cpp_properties.json file to reflect the location of your Emscripten installation. - GNU make, if you're on Windows.
(Our makefile should work on all desktop platforms regardlessly.)
Then you can run the project by the following:
pnpm start
This will build the project and start the development server.
All source codes are located in the src
folder, in which you'll find:
app
: User interface, written in React (I usually use Vue, but I decided to give it a try for this project).core
: The C++ part. See change log for the changes made to the original source code of ReferenceFinder.icon
: This folder contains the pre-built Font Awesome subset.lib
: Compiled WebAssembly of ReferenceFinder.locale
: All locale files, based on the previous work by Maya Kraft etc.public
: The HTML file and other unbundled assets.