I've got a CMake project that contains code and a few data files (images to be precise).
My directory structure is like this:
- src
- data
src contains the source code, data the data files. CMake suggests out of source builds, so when I invoke make, I have the executable program, but not the data files, thus I cannot execute the program.
Of course, make install would copy my data files to the required location and make it work, therefore I develop like this right now:
- cmake -DCMAKE_INSTALL_DIR=dist
- make install
- dist/myprogram.exe
That's okay if I'm working with the commandline and an editor, but I recently decided to move to Eclipse CDT. Generating an Eclipse project from CMake works great, but manually executing the install target from Eclipse is not so nice.
How do you people tackle this problem? Does your program have some clever algorithms to try and find it's data directory even if it's not where the binary is? Or do you not use out of source builds?