cypher543
๐ Joined in 2012
๐ผ 379 Karma
โ๏ธ 153 posts
๐
15 latest posts
Load more
(Replying to PARENT post)
The target property overrides the global setting, so you can set CMAKE_CXX_STANDARD as the default and then set the target property if you really need a different standard for some reason. And if you have a whole sub-project that needs a specific version, you can set CMAKE_CXX_STANDARD before calling add_subdirectory to have it apply to only the targets in that directory.
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
Note that the variables in the "Detecting an operating system" section are for detecting the target operating system, not the host (what CMake is running on). If you use a toolchain file to cross-compile from Linux to Windows, for example, WIN32 will be defined instead of UNIX.
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
1. Seeing a doctor about my anxiety issues.
2. Deciding not to pursue a career in software development. I enjoy programming way more as a hobby that I can take a break from whenever I want.
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
The article said Stack when I posted my comment. Looks like they corrected it shortly after.
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
The article states it's called "Azure Stack OS."
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
Correct. WebRTC is just a specification for an API on top of SRTP+ICE+SCTP.
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
Could they not have required the user to own a copy of Fallout 3 and then extract the needed sound files from the original installation on first launch? Then the copyrighted works wouldn't need to be distributed with the mod itself.
๐คcypher543๐7y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
Hyper-V is extremely strict about what can access its hypercalls, so you can't do anything from userspace like with KVM and HAX. Hypercalls can only be made from ring 0 and creating domains can only be done from the root domain.
๐คcypher543๐8y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
Dillo specifically avoids scripting, so I doubt the internals are well-suited to that sort of integration. You could try extending NetSurf[1], though. It uses Duktape[2] as its Javascript engine and its API is pretty similar to Lua's.
๐คcypher543๐8y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
I really, really wish Microsoft would open up the Pico Process APIs to third-party driver developers. Right now, WSL is the only driver allowed to install Pico Process callbacks. It would be cool to implement a Darwin layer or a Classic Xbox emulator with that tech.
๐คcypher543๐8y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
I'm surprised the "minihtml" HTML/CSS engine is buried in the release notes. That sounds like an amazing little component and something that would be extremely useful for projects that don't want to embed an entire browser engine. Even if Sublime itself remained closed, I would love to see minihtml open sourced!
๐คcypher543๐8y๐ผ0๐จ๏ธ0
(Replying to PARENT post)
I do! I've worked with C, C++, Python, Java, Go, JavaScript, Ruby, and Pascal, but for anything that isn't network-oriented or a simple CLI tool, I always reach for C (sometimes a strict subset of C++). Its distinct lack of features allows me to focus more on the problem at hand and less on the best of the hundred different ways to do something in other languages. Go is the same way, which is why I use it extensively for mid-level stuff like CLI tools and servers.