cJPEG/README.md

24 lines
807 B
Markdown
Raw Permalink Normal View History

# libJPEG v9d (a.k.a. 9.2) sources for Casio Graph 90+E and Prizm CG10/20
2022-05-09 07:52:13 +02:00
Need to have a fully working gcc toolchain for SH3/SH4 architecture.
You can use the `giteapc install Slyvtt/cJPEG` command to get an automatic install
2022-05-09 07:52:13 +02:00
## Using in a program
2022-05-09 07:52:13 +02:00
With CMake
```cmake
find_package(cJPEG 9.2 REQUIRED)
target_link_libraries(<TARGET> PRIVATE cJPEG::cJPEG)
```
2022-05-09 07:52:13 +02:00
With make, the following steps are not automatically done, so please proceed with the following manipulations :
* copy the library libcJPG.a into your SH3/SH4 compiler lib folder
* copy header files (`jpeglib.h`, `jconfig.h`, `jmorecfg.h` and `jerror.h` ) contained in the folder into the include folder of the SH3/SH4 compiler
* link with `-lcJPEG`
2022-05-09 07:52:13 +02:00
In the C/C++ sources, add `#include <jpeglib.h>` (you may also add `#include <jerror.h>`)
2022-05-09 07:52:13 +02:00