friendlyanon

Results 115 comments of friendlyanon

Echoing what I said in https://github.com/TheLartians/PackageProject.cmake/pull/19#issuecomment-799370122, I would add a function to this project that generates the export header and sets up the target with the necessary properties, and maybe...

> I just think the requirements are rather different and it's best to create two templates That is indeed correct. One of the reasons I created [cmake-init](https://github.com/friendlyanon/cmake-init), among many other...

Looks good to me. Unfortunately, I had to reinstall my PC since I added the text and I lost the font for it. I know I'm not in the IRC,...

Yes, that one indeed looks neater. Also, I got an email where the sender said the horizontal text was better. I'm going to reopen this, so maybe other people can...

Since my own phone has JellyBean, I didn't want to go that low on the version list, because it's hard to guarantee the usability that way. It's entirely possible to...

@sh000gun I appreciate your enthusiasm for something I myself don't really have time for due to uni, but please avoid distributing binary blobs like this. I'm also pretty sure binary...

Look at logcat to see what's happening. The videos you mentioned load fine on my end.

This is a CMake thing. The semicolon is a special character that delimits list elements. You must look at how your argument is used and apply the appropriate amount of...

You are right, I just tested things and it seems you need 26 escapes: `set(esc [[\\\\\\\\\\\\\\\\\\\\\\\\\]])` Kinda crazy! This script should improve its argument handling a lot.

CMake's VS selection logic is implemented in [cmVSSetupHelper.cxx](https://github.com/Kitware/CMake/blob/master/Source/cmVSSetupHelper.cxx). In `cmVSSetupAPIHelper::EnumerateAndChooseVSInstance()`, you can see that it fetches the installed VS versions via COM or falls back to VsWhere. If CMake knows...