Archive 17/01/2023.

Compilation error

rogerdv

I came back from vacatins, pulled and tried to compile, but Im getting this:

/home/roger/projects/Urho3D/Source/Urho3D/generated/NetworkLuaAPI.cpp:40:30: fatal error: Network/Controls.h: No such file or directory #include "Network/Controls.h" ^ compilation terminated. make[2]: *** [Source/Urho3D/CMakeFiles/Urho3D.dir/generated/NetworkLuaAPI.cpp.o] Error 1 make[1]: *** [Source/Urho3D/CMakeFiles/Urho3D.dir/all] Error 2 make: *** [all] Error 2

I have cleaned and ran cmake again, but the problem persists. How can I solve this?

GoogleBot42

#include “” cannot be used anymore in the head repo.

You need to use #include <>

See this: http://discourse.urho3d.io/t/new-build-system/715/1

cadaver

Also, Controls.h is now part of the Input subdirectory, to allow using it when networking is not compiled in.

rogerdv

Solved it by manually removing generated directory.