Michael Lojkovic

- Total activity 89
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 33
-
Michael Lojkovic created a post, Any way to change the default command prompt?
I'm building Unreal with CLion so I can debug some engine code. The only issue is it takes much longer to build with the default terminal. When I run it from my system terminal everything compiles ... -
-
Michael Lojkovic created a post, How to debug Unreal when it shutdowns and relaunchs?
There is a bug in Unreal, which I'm trying to step through, that is only triggered when choosing a project for the first time from the project browser. The engine needs to recompile the project for... -
Michael Lojkovic created a post, AnsweredIs there a sample project for using Catch for Unit testing?
I'm trying to integrate Catch with my larger code base, and currently I'm running into an issue with compiling it separately from the rest of my project. My cmake script is trying to compile it wit... -
Michael Lojkovic created a post, AnsweredView Unreal string types in watch list.
I've been having issues with getting GDB to show the Unreal string types values in the watch list. I'm relying on printing to logs for debugging strings currently. Does anyone know how to get CLio... -
-
Michael Lojkovic created a post, Setting CMake build options that calls a script .
I'm trying to benchmark different project setups for compile times. To do this I've written a script that calls clang and clang++ with output redirected somewhere else. The only issue is to not nee... -
-
Michael Lojkovic created a post, Using all core for compilation of MSVC build?
I can't seem to get windows to compile with every core. Despite passing /MP${CORE_COUNT} to CMAKE_CXX_FLAGS and CMAKE_C_FLAGS processor utilization seems to only top out at about 10% for the entire... -
Michael Lojkovic created a post, Is there away to only enable a break point, if a specific break point is not hit.
I'm testing to see if a condition in my code is needed. My code writes the buffer to a file, if the buffer is edited earlier in the method, and then appends to the end of the file. I could probably...