Kaaserne

Results 13 comments of Kaaserne

Still having the issue with `run --package project_euler --bin project_euler` Channel: Nightly. ![](https://i.imgur.com/v9UPvn2.png) ![](https://i.imgur.com/6AyMFvy.png)

``` 17>CMake Error at _deps/sfml-build/cmake_install.cmake:36 (file): 17> file INSTALL cannot make directory 17> "C:/mypath/myapp/build/windows/$/./include": ``` This error may have something to do with admin rights. I had the same error...

I'm still having this issue (clang windows msvc 15). Got everything working by doing: ```cpp // /include/SFML/Config.hpp #if defined(_MSC_VER) && !defined(__clang__) // Added !defined(__clang__) typedef signed __int64 Int64; typedef unsigned...

> Are you using clang with MSVC like interface or gnu-like? Right how can I check this? I'm thinking gnu-like cause it uses dashes (`--arg`) rather than slahes (`/arg`) and...

Alright, so hurdle 2 being the deprecation warnings? Cause if so, it'll take me a bit longer and/or maybe should be in a different PR? Also not sure how to...

I will try and make a PR somewhere this week to disable the deprecated errors to the 2.6.x branch then

Sorry for all the fuzz, just let me know once the CI job is up and running if you want me to look into the issue.

Yea... I'm sorry, I didn't know about the CMake option at all, but yes adding `-DWARNINGS_AS_ERRORS:BOOL=FALSE` seems to fix the problem. I thought those were actual errors

Just cloned the master branch, compiling with clang15 gives: ``` [build] C:/Users/marcd/Downloads/SFML/src/SFML/System/FileInputStream.cpp:70:18: error: '_wfopen' is deprecated: This function or variable may be unsafe. Consider using _wfopen_s instead. To disable deprecation,...