[fltk.general] Clean FLTK installation for CMake on Windows

2010-12-30 Thread Julia Jacobson
Hello everybody out there using FLTK, Building FLTK on Windows with Visual C++ worked fine for me. However, I can only build a FLTK GUI project using CMake if I use absolute PATHs in my CMakeLists.txt file, which looks like this: SET(FLTK_DIR C:/Program Files/fltk-1.1.9/) SET(FLTK_BASE_LIBRARY

Re: [fltk.general] Clean FLTK installation for CMake on Windows

2010-12-30 Thread Ian MacArthur
Julia Jacobson wrote: Hello everybody out there using FLTK, Building FLTK on Windows with Visual C++ worked fine for me. However, I can only build a FLTK GUI project using CMake if I use absolute PATHs in my CMakeLists.txt file, which looks like this: Hmm, tricky - Cmake is not one of our

Re: [fltk.general] Clean FLTK installation for CMake on Windows

2010-12-30 Thread Julia Jacobson
Julia Jacobson wrote: Hello everybody out there using FLTK, Building FLTK on Windows with Visual C++ worked fine for me. However, I can only build a FLTK GUI project using CMake if I use absolute PATHs in my CMakeLists.txt file, which looks like this: Hmm, tricky - Cmake is not one

Re: [fltk.general] Clean FLTK installation for CMake on Windows

2010-12-30 Thread Albrecht Schlosser
On 30.12.2010 12:07, Julia Jacobson wrote: Building FLTK on Windows with Visual C++ worked fine for me. However, I can only build a FLTK GUI project using CMake if I use absolute PATHs in my CMakeLists.txt file, which looks like this: SET(FLTK_DIR C:/Program Files/fltk-1.1.9/)

Re: [fltk.general] Clean FLTK installation for CMake on Windows

2010-12-30 Thread Julia Jacobson
The main point would be to find out how FINDPACKAGE(FLTK ...) works on Windows. Once you found out how it works, you could maybe install your built FLTK libs, dlls, header files so that FINDPACKAGE can find them... Yes, that was really the point. CMake finds the path of the FLTK

Re: [fltk.general] Clean FLTK installation for CMake on Windows

2010-12-30 Thread Albrecht Schlosser
On 30.12.2010 19:15, Julia Jacobson wrote: The main point would be to find out how FINDPACKAGE(FLTK ...) works on Windows. Once you found out how it works, you could maybe install your built FLTK libs, dlls, header files so that FINDPACKAGE can find them... Yes, that was really the point.