Re: [cmake-developers] Adding Swift support to CMake for Linux/Makefiles

2016-01-07 Thread Eric Wing
On 12/24/15, Eric Wing wrote: >> set(SWIFT_BRIDGING_HEADER SwiftSDL-Bridging-Header.h) > > Quick addendum: Just realized the bridging header should probably be > per-target. > For reference, we have an Xcode specific, per-target variable for the bridging header:

Re: [CMake] get_prerequisites() - fails with No such file or directory

2016-01-07 Thread rozelak
Sorry po re-posting, the formatting in the previous message was badly corupted ... :-(   __ Původní zpráva: Od: Komu: Datum: 07.01.2016 10:25 Předmět: Re: [CMake]get_prerequisites() - fails with No such file or

Re: [CMake] get_prerequisites() - fails with No such file or directory

2016-01-07 Thread rozelak
When get_prerequisites() is not called, the build works correctly. So, did I do anything wrong? get_prerequisites needs to be called at install time and not CMake time. Look at install(CODE "") -Bill   Hello Bill,thank you for your answer. I guessed that this is the problem, but I didn't

Re: [CMake] Imported libraries and cyclic dependencies

2016-01-07 Thread iosif neitzke
Which version of CMake are you using? On 01/07/2016 04:28 PM, Rainer Poisel wrote: Hi, I am having troubles with linking a bunch of imported libraries that have cyclic dependencies. This is what I am doing: 8<=== find_library(ESP8266_SDK_LIB_MAIN main

[cmake-developers] patch building and testing

2016-01-07 Thread Mike Fitzgerald
Hi cmake-developers, I'm a bit new to this, so please bear with me! I wanted to fix an issue (#13666), so I did the following: 1.) Cloned the git repo, ran bootstrap and make. 2.) Wrote some code in cmVisualStudio10TargetGenerator.cxx. Running make again didn't seem to recompile anything,

Re: [CMake] adding parts of build log to dashboard.

2016-01-07 Thread Attila Krasznahorkay
Hi Rashad, It may not be the perfect way of doing it, but I attach build log files as "notes". With something like: set( CTEST_NOTES_FILES ${CTEST_BINARY_DIRECTORY}/BuildLogs/log1.log ... ) ctest_submit( PARTS Build Notes ) (I actually do something rather more complicated. I split the build

Re: [CMake] Imported libraries and cyclic dependencies

2016-01-07 Thread Rainer Poisel
Hello, I am using CMake 3.4.1. Best regards, Rainer On Fri, Jan 8, 2016 at 2:18 AM, iosif neitzke wrote: > Which version of CMake are you using? > > > On 01/07/2016 04:28 PM, Rainer Poisel wrote: >> >> Hi, >> >> I am having troubles with linking a bunch of

[Cmake-commits] CMake branch, master, updated. v3.4.1-771-g64dd524

2016-01-07 Thread Brad King
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 64dd52422b02398d652220514bcf18c2abbbe643 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.4.1-769-g0296089

2016-01-07 Thread Brad King
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 0296089291d59568780baea30332b66ef24f1df4 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.4.1-785-g5112da5

2016-01-07 Thread Brad King
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 5112da5c2fe9cfa35d741cd0f35d20c787797475 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.4.1-1864-gda8f980

2016-01-07 Thread Brad King
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, next has been updated via da8f980ca6488a3695bd813dec234cdb8b6d7da8 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.4.1-1862-g633b34d

2016-01-07 Thread Brad King
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, next has been updated via 633b34d968b9513fb3106642f88a63f346503dab (commit) via

Re: [CMake] 3.4.1 installer overwrites Windows PATH system var

2016-01-07 Thread Brad King
On 12/07/2015 09:06 AM, Brad King wrote: > Yes. We will look at addressing this for the 3.5 release now that we > understand the cause. We've switched to using the WiX generator to produce a .msi installer instead: Utilities/Release: Switch to .msi builder for Windows binary

Re: [CMake] Creating relocatable export files

2016-01-07 Thread Alexander Neundorf
On Saturday, November 14, 2015 12:19:11 Nicholas Braden wrote: > Instead of using FOO_INCLUDE_DIR, I believe you should use > target_include_directories() with the INTERFACE or PUBLIC options - > this will export the include directories properly and they will be > used when someone

[Cmake-commits] CMake branch, next, updated. v3.4.1-1868-g9469108

2016-01-07 Thread Brad King
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, next has been updated via 946910862468bef655e28378fc0bf74caa70dc7a (commit) via

[CMake] Imported libraries and cyclic dependencies

2016-01-07 Thread Rainer Poisel
Hi, I am having troubles with linking a bunch of imported libraries that have cyclic dependencies. This is what I am doing: 8<=== find_library(ESP8266_SDK_LIB_MAIN main ${ESP8266_SDK_BASE}/lib) add_library(esp8266_main UNKNOWN IMPORTED) set_property(TARGET esp8266_main