You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <jasper/jasper.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
jas_conf_clear();
|
|
jas_conf_set_max_mem_usage(0x100000);
|
|
jas_init_library();
|
|
jas_cleanup_library();
|
|
return strcmp(JAS_VERSION, CMAKE_EXPECTED_JASPER_VERSION);
|
|
}
|