[Cmake-commits] CMake branch, master, updated. v3.8.1-1093-g1019789

2017-05-08 Thread Kitware Robot
_VERSION_MINOR 8) -set(CMake_VERSION_PATCH 20170508) +set(CMake_VERSION_PATCH 20170509) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/

Re: [CMake] CMake regexes: Case insensitive and whitespace matching

2017-05-08 Thread Roman Wüger
Hello Daniel, I tried it also in various ways, but I think the Regex in Cmake is very limited. What has worked for me was to use try_run and implement a simple c++ application which uses C++11's and accept one or two command line arguments (~ 15 lines of code). Hope it helps Regards Roman

[cmake-developers] C# Support and Embedded Resources

2017-05-08 Thread Roman Wüger
Hello, I played around with the C# support in CMake 3.8.0/3.8.1. In a project I need embedded resources, how can I add those? Regards Roman -- 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

[CMake] C# Support and Embedded Resources

2017-05-08 Thread Roman Wüger
Hello, I played around with the C# support in CMake 3.8.0/3.8.1. In a project I need embedded resources, how can I add those? Regards Roman -- 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

[Cmake-commits] CMake branch, master, updated. v3.8.1-1092-g22d0a83

2017-05-08 Thread Kitware Robot
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake". The branch, master has been updated via 22d0a83a4cc2188119e008ed346a10f7b0b32f8e (commit) via

[Cmake-commits] CMake branch, master, updated. v3.8.1-1086-g141b8cc

2017-05-08 Thread Kitware Robot
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake". The branch, master has been updated via 141b8ccf2cddc6b5d3c3c7258cefb181c09e5ce9 (commit) via

[CMake] CMake regexes: Case insensitive and whitespace matching

2017-05-08 Thread Daniel Lueken
Hi! Is there any way to do case insensitive matching in string(REGEX ... ? Also, is there a way to match whitespaces? What I would like to do, speaking in Perl-like syntax, is something like string(REGEX REPLACE "/something\s+/stuff/i" ... Not knowing how to do this, I am currently doing