... | ... | @@ -33,9 +33,9 @@ cmake --build . --config Release |
|
|
cd ..\..
|
|
|
fossils.py
|
|
|
```
|
|
|
The critical part is the `cmake ..` command. Check the output if it fails and fix your environment is something is not found (add folders to include files, libaries or executables to `INCLUDE`, `LIB` and `PATH` respectively), then retry until evrything is found.
|
|
|
The critical part is the `cmake ..` command. Check the output if it fails and fix your environment is something is not found (add folders to include files, libaries or executables to `INCLUDE`, `LIB` and `PATH` respectively), then retry until everything is found.
|
|
|
|
|
|
It is possible to build the code without Intel OneAPI with the following command:
|
|
|
It is possible to build the code without the massive "Intel OneAPI" libraries with the following command:
|
|
|
```
|
|
|
cmake -DFEM_USE_MKL=OFF ..
|
|
|
```
|
... | ... | |