[cmake-developers] Fortran detection, issue 9220

2015-02-05 Thread Christoph GrĂ¼ninger
Hi CMake developers,

would you mind to tackle issue 9220 enable_language( OPTIONAL)
signature does not work correctly? It's a shame that CMake cannot
properly detect optional Fortran for more than 5 years! The workaround
from Eigen works fine for me, but it's still embarrassing.

BTW, is there a way to disable the optional Fortran by a flag to CMake?
I couldn't find any...

Bye
Christoph
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


[cmake-developers] [ANNOUNCE] CMake 3.1.2 Released

2015-02-05 Thread Robert Maynard
We are pleased to announce that CMake 3.1.2 is now available for download.

Please use the latest release from our download page:
  http://www.cmake.org/download/

Thanks for your support!

-
Changes in 3.1.2 since 3.1.1:

Ben Boeckel (1):
  install: Fix regression in default configuration selection

Bill Hoffman (1):
  CPack: Fix packaging of source tarballs with symbolic links

Brad King (5):
  KWSys Directory: Check opendir return value before using it (#15367)
  Help: Clarify status of link_libraries command
  Normalize OBJECT_DEPENDS paths to match custom commands (#15366)
  MSVC: Fix initialization of RelWithDebInfo shared library link
flags (#15385)
  CMake 3.1.2

Christoph GrĂ¼ninger (1):
  FeatureSummary: Fix bracket in documentation.

Guillaume Belz (1):
  FindOpenSSL: fix detection of OpenSSL 1.0.2

Marco Nolden (1):
  ctest_build: Update GNU make error message matching (#15379)
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers

Re: [cmake-developers] Feature request in CMake-gui: Open project file button

2015-02-05 Thread David Cole via cmake-developers
There is a similar (old) feature request in the bug tracker for a
build button:

http://public.kitware.com/Bug/view.php?id=8260

See the commentary there when considering adding a button to cmake-gui...


D



On Thu, Feb 5, 2015 at 4:54 AM, Paul Anton Letnes p...@letnes.com wrote:
 Hi!

 I sometimes dream of a tiny, but time-saving feature: Next to configure
 and generate, I'd want an open project button (for VS/Eclipse/XCode or
 other IDE projects).

 Cheers
 ---
 Paul Anton

 --

 Powered by www.kitware.com

 Please keep messages on-topic and check the CMake FAQ at:
 http://www.cmake.org/Wiki/CMake_FAQ

 Kitware offers various services to support the CMake community. For more
 information on each offering, please visit:

 CMake Support: http://cmake.org/cmake/help/support.html
 CMake Consulting: http://cmake.org/cmake/help/consulting.html
 CMake Training Courses: http://cmake.org/cmake/help/training.html

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Follow this link to subscribe/unsubscribe:
 http://public.kitware.com/mailman/listinfo/cmake-developers
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] New module: CheckFortranCompilerFlag.cmake

2015-02-05 Thread Brad King
On 02/04/2015 08:21 AM, Nicolas Bock wrote:
 I have modified the patch and added error messages for NAG and PGI
 compilers. I have also fixed the FAIL_REGEX in the module itself to
 read not for Fortran instead of ... for C.

Thanks.  I've drafted commits to add the module and a test case:

 CheckFortranCompilerFlag: Add module to check Fortran flag existence
 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=393a45e2

 CheckFortranCompilerFlag: Add test case
 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=54e900ab

It was too late in the 3.2 preparation process to add this, so the
commits are based on post-3.2 development.  This will give us more
time to get the module tested everywhere and to get feedback from
early adopters that build from source or use nightly binaries.

-Brad

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] New module: CheckFortranCompilerFlag.cmake

2015-02-05 Thread Nicolas Bock
Thanks! Let me know how I can help with testing.

Nick
On Feb 5, 2015 9:23 AM, Brad King brad.k...@kitware.com wrote:

 On 02/04/2015 08:21 AM, Nicolas Bock wrote:
  I have modified the patch and added error messages for NAG and PGI
  compilers. I have also fixed the FAIL_REGEX in the module itself to
  read not for Fortran instead of ... for C.

 Thanks.  I've drafted commits to add the module and a test case:

  CheckFortranCompilerFlag: Add module to check Fortran flag existence
  http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=393a45e2

  CheckFortranCompilerFlag: Add test case
  http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=54e900ab

 It was too late in the 3.2 preparation process to add this, so the
 commits are based on post-3.2 development.  This will give us more
 time to get the module tested everywhere and to get feedback from
 early adopters that build from source or use nightly binaries.

 -Brad


-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers

Re: [cmake-developers] Extracting target metadata, IDE integration

2015-02-05 Thread Aleix Pol
On Mon, Feb 2, 2015 at 5:36 PM, Aleix Pol aleix...@kde.org wrote:
 On Mon, Jan 26, 2015 at 9:15 PM, Tobias Hunger tobias.hun...@gmail.com 
 wrote:
 I gave this patch a try with the cmake project data.

 I had hoped that this file would contain all the information an IDE
 might need, but there seems quite a bit missing for that. E.g. there
 is no information on which files are used to build a target. What am I
 missing?

 Best Regards,
 Tobias

 On Mon, Jan 26, 2015 at 4:23 PM, Brad King brad.k...@kitware.com wrote:
 On 01/25/2015 08:26 AM, Tobias Hunger wrote:
 I just had a bit of time to play with cmake this weekend: Is this
 patch available somewhere by now?

 Aleix sent it in a message of this thread on 2015-01-09:

  
 http://thread.gmane.org/gmane.comp.programming.tools.cmake.devel/10711/focus=12061

 Some review comments elsewhere in this thread are still pending.

 -Brad


 It does provide them. For example [1].

 Isn't that what you meant?

 Aleix

 [1]
 {
  name: kdevcmakebuilder,
  type: MODULE_LIBRARY,
  configs: [
{
  name: debug,
  sources: [

 /home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/cmakebuilder.cpp,

 /home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/cmakejob.cpp,

 /home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/prunejob.cpp,

 /home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/cmakebuilderpreferences.cpp,

 /home/kde-devel/build-frameworks/kdevelop/projectbuilders/cmakebuilder/ui_cmakebuildersettings.h,

 /home/kde-devel/build-frameworks/kdevelop/projectbuilders/cmakebuilder/cmakebuilderconfig.cpp,

 /home/kde-devel/build-frameworks/kdevelop/projectbuilders/cmakebuilder/cmakebuilderconfig.h,

 /home/kde-devel/build-frameworks/kdevelop/projectbuilders/cmakebuilder/kdevcmakebuilder_automoc.cpp,

 /home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/cmakebuildersettings.ui,

 /home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/cmakebuilderconfig.kcfgc
  ]
}
  ],
  directory:
 /home/kde-devel/build-frameworks/kdevelop/projectbuilders/cmakebuilder,
  location:
 /home/kde-devel/build-frameworks/kdevelop/projectbuilders/cmakebuilder/kdevcmakebuilder.so,
  backtrace:
 [/home/kde-devel/frameworks/kdevelop/projectbuilders/cmakebuilder/CMakeLists.txt:20],
  installed: true
}

Bump?

Aleix
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


[cmake-developers] Feature request in CMake-gui: Open project file button

2015-02-05 Thread Paul Anton Letnes
Hi!

I sometimes dream of a tiny, but time-saving feature: Next to configure and 
generate, I'd want an open project button (for VS/Eclipse/XCode or other 
IDE projects).

Cheers
---
Paul Anton

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers