Use without installing
Setup the correct hierarchy from CMake to be able to skip the make install
step.
It shall be possible to execute the whole ART toolkit simply by compiling it and give it the correct paths with something like source ./setenv.sh
#!/bin/sh
CMD_LINE_PATH=$PWD/build/Source/CommandLineTools
export PATH=$CMD_LINE_PATH/arm2art:$CMD_LINE_PATH/art_imagediff:$CMD_LINE_PATH/art_imagesnr:$CMD_LINE_PATH/art_imagetool:$CMD_LINE_PATH/artist:$CMD_LINE_PATH/bugblatter:$CMD_LINE_PATH/greymap:$CMD_LINE_PATH/impressario:$CMD_LINE_PATH/impresario:$CMD_LINE_PATH/polvis:$CMD_LINE_PATH/tonemap:$PATH
export ART_RESOURCE_PATH=$PWD/ART_Resources
export ART_LIBRARY_PATH=$PWD/build/lib
export LD_LIBRARY_PATH=$ART_LIBRARY_PATH:$LD_LIBRARY_PATH
What is missing:
- having the includes in the
${ART_RESOURCE_PATH}/arm2art/include/
What is desired:
- set all executables in
build/bin