Results 57 comments of hsdk123

Looking forward to this!

I see the thread started in 2017 and hasn't had updates since 2018, is this still being considered? The marketing pitch looks great.

> IsDebuggerPresent() Currently testing in vs2019 - seems to work fine with RelWithDebInfo, and doesn't return true if no debugger attached.

> if I run with F5, it says true, if I run with Ctrl-F5, it says false Yup, I think that's exactly the case with `IsDebuggerPresent()` (you could of course...

Good to see we're pushing through this! I'm still getting the undefined symbols with the static build: ``` FAILED: ../../../bin-Windows-RelWithDebInfo8-cored/LightApp.exe cmd.exe /C "cd . && "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe"...

Hmm, interesting... Would you be able to make sense of this? ``` 1> [CMake] CMake Error at C:/Users/daego/Desktop/DevTools/vcpkg/scripts/buildsystems/vcpkg.cmake:188 (_add_executable): 1> [CMake] Target "LightApp" links to target "OpenAL::OpenAL" but the target...

(this is when I explicitly add OpenAL::OpenAL as a link dependency)

> hand-built static version Yup, I'm using the hand-built static version, and with the updated FindOpenAL. Not sure why vcpkg is coming up. I can confirm that this finishes the...

Might potentially be faster to just ask the maintainer of openal soft, the person seemed kindly fast with replies.

The openal-soft maintainer got back super quick, it seems adding ``` add_compile_definitions(AL_LIBTYPE_STATIC) ``` fixes the build (and I could get rid of the extra target_link_dependency) - it looks as if...