Re: [CMake] MSVC10 project error

2010-09-07 Thread J Decker
Actually I updated that bug report - filenames without any dots in them get a default suffix added. On Tue, Sep 7, 2010 at 4:11 AM, J Decker wrote: > Yes that works just dandy :) thanx. > > On Tue, Sep 7, 2010 at 2:44 AM, David Cole wrote: >> This was fixed yesterday in CMake 'next' -- please tr

Re: [CMake] MSVC10 project error

2010-09-07 Thread J Decker
Yes that works just dandy :) thanx. On Tue, Sep 7, 2010 at 2:44 AM, David Cole wrote: > This was fixed yesterday in CMake 'next' -- please try it out if you have > time... > See: > http://public.kitware.com/Bug/view.php?id=10611 > http://public.kitware.com/Bug/view.php?id=11207 > > HTH, > David >

Re: [CMake] MSVC10 project error

2010-09-07 Thread J Decker
Oops sorry didn't have right branch. On Tue, Sep 7, 2010 at 3:50 AM, J Decker wrote: > I checked out the code from git, built it with mingw, ran it against > my first sample cmakelists.txt, and it still dropped the extra > extension parts. > > So as of cmake version 2.8.2.20100907-g409c it doesn'

Re: [CMake] MSVC10 project error

2010-09-07 Thread J Decker
I checked out the code from git, built it with mingw, ran it against my first sample cmakelists.txt, and it still dropped the extra extension parts. So as of cmake version 2.8.2.20100907-g409c it doesn't work. On Tue, Sep 7, 2010 at 2:44 AM, David Cole wrote: > This was fixed yesterday in CMake

Re: [CMake] MSVC10 project error

2010-09-07 Thread David Cole
This was fixed yesterday in CMake 'next' -- please try it out if you have time... See: http://public.kitware.com/Bug/view.php?id=10611 http://public.kitware.com/Bug/view.php?id=11207 HTH, David On Tue, Sep 7, 2010 at 4:09 AM, J Decker wrote: > --- > PROJECT( basename.stop ) > set( ${SOUR

Re: [CMake] MSVC10 project error

2010-09-07 Thread J Decker
--- PROJECT( basename.stop ) set( ${SOURCES} ) add_executable(${PROJECT_NAME} ${SOURCES}) just building a windows exectuable with a . in the name... $(TargetFileName)=basename.exe $(TargetName)=basename $(TargetExt)=.exe that is without overriding SUFFIX.the '.stop' is dropped fr

Re: [CMake] MSVC10 project error

2010-09-07 Thread J Decker
On Tue, Sep 7, 2010 at 12:29 AM, J Decker wrote: > The sample CMakeLists.txt  (requires a blank 'whatever.c' file) > - > cmake_minimum_required(VERSION 2.8) > Same sceneario but instead specify a flat name with '-'   add_library( bag-service-external SHARED whatever.c )   SET_TARGE

[CMake] MSVC10 project error

2010-09-07 Thread J Decker
The sample CMakeLists.txt (requires a blank 'whatever.c' file) - cmake_minimum_required(VERSION 2.8) add_library( bag.service.external SHARED whatever.c ) SET_TARGET_PROPERTIES( bag.service.external PROPERTIES SUFFIX "" PREFIX "" ) --