comments, readme

This commit is contained in:
Matthew Kennedy 2022-07-15 16:19:03 -07:00
parent a8d6982d40
commit 5c871dac13
2 changed files with 4 additions and 0 deletions

View File

@ -6,3 +6,5 @@ Set variable `$(RUSEFI_LIB)` to the path to the folder that contains this readme
Include the mk files of the modules that you want, then add:
- `$(RUSEFI_LIB_INC)` to your list of includes
- `$(RUSEFI_LIB_CPP)` to your list of c++ input files
Currently, C++17 is required to compile these libraries.

View File

@ -1,2 +1,4 @@
// This file just includes all the header-only parts of the lib so we can ensure they at least compile.
#include "rusefi/arrays.h"
#include "rusefi/interpolation.h"