Re: [CMake] cpack hello world, empty packages - novice warning

2009-06-10 Thread Mark Lohry
"CPack only packages what is installed" ahh thanks, that's the little tidbit I was missing. Thanks! On Wed, Jun 10, 2009 at 10:19 AM, David Cole wrote: > Mike is right... you'll need to build your code first. > But, also: > You are missing install rules in your CMakeLists.txt file. CPack only

Re: [CMake] cpack hello world, empty packages - novice warning

2009-06-10 Thread David Cole
Mike is right... you'll need to build your code first. But, also: You are missing install rules in your CMakeLists.txt file. CPack only packages what is installed. HTH, David On Wed, Jun 10, 2009 at 11:16 AM, Michael Jackson < mike.jack...@bluequartz.net> wrote: > Don't you need to actually _c

Re: [CMake] cpack hello world, empty packages - novice warning

2009-06-10 Thread Michael Jackson
Don't you need to actually _compile_ your code first? I don't think cpack will automatically build your project for you. Just a guess. _ Mike Jackson mike.jack...@bluequartz.net BlueQuartz Softwarewww.b

[CMake] cpack hello world, empty packages - novice warning

2009-06-10 Thread Mark Lohry
1) where is the best place for documentation for cmake/cpack? Is there any free equivalent to the autotools book? the sporatic examples coupled with sparse documentation hasn't made the transition as simple as expected :) 2) sorry for the novice nature of this question, but I'm just not seeing wha