On mac, the build script might require the installation of the gnu core utils. This can be done through homebrew with brew install coreutils
Run the project script with the --build
or -b
flag:
./project --build
Your build be in /out/Release
.
Run the project script with the --type
or -t
flag and specify the build type:
./project --build --type Debug
The build type must be capitalized. The script will default to 'Release' if the flag is not used.
Run the project script with the --name
or -n
flag and specify the build name:
./project --build --name my_name
Your build be in /out/my_name
.
The build name will default to the selected build type if flag is not used.
Run the script with the --clean
or -c
flag.
./project --clean
Run cmake on the CMakeLists.txt in the src folder. Build the result of that.
cmake -Bbuild -Ssrc
cmake --build build
Provides resources for dealing with endianness, strings, command line inputs.
Provides resources for reading from and writing to Fiff files.
Prints the contents of a fiff file in non-binary form.
Quick lookup of tags, data types and block ids.
Gets rid of PHI from fiff files. A feature-stripped reimplementation of MNE Anonymize.