fix paths
This commit is contained in:
parent
81a5073f0b
commit
cbb3091bfa
|
|
@ -10,13 +10,13 @@ qt_standard_project_setup()
|
|||
|
||||
add_library(engine STATIC
|
||||
src/engine/app/humanoid/Humanoid.cpp
|
||||
src/engine/app/humanoid/Humanoid.hpp
|
||||
src/include/engine/app/humanoid/Humanoid.hpp
|
||||
|
||||
src/engine/app/v8/tree/Instance.cpp
|
||||
src/engine/app/v8/tree/Instance.hpp
|
||||
src/include/engine/app/v8/tree/Instance.hpp
|
||||
|
||||
src/engine/app/Name.hpp
|
||||
src/engine/app/Name.cpp
|
||||
src/include/engine/app/Name.hpp
|
||||
)
|
||||
|
||||
qt_add_executable(player
|
||||
|
|
@ -31,6 +31,8 @@ qt_add_executable(studio
|
|||
src/client/studio/main.cpp
|
||||
)
|
||||
|
||||
target_include_directories(engine PUBLIC include)
|
||||
|
||||
target_link_libraries(player PRIVATE Qt6::Core engine)
|
||||
target_link_libraries(studio PRIVATE Qt6::Core engine)
|
||||
target_link_libraries(server PRIVATE engine)
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#include "Humanoid.hpp"
|
||||
#include <engine/app/humanoid/Humanoid.hpp>
|
||||
|
||||
RBX::Humanoid::Humanoid()
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
#ifndef __APP_HUMANOID_HUMANOID_HPP__
|
||||
#define __APP_HUMANOID_HUMANOID_HPP__
|
||||
#include <engine/app/v8/tree/Instance.hpp>
|
||||
|
||||
namespace RBX
|
||||
{
|
||||
|
|
@ -19,7 +20,7 @@ namespace RBX
|
|||
void computeForce(float force, bool something);
|
||||
void getTorso();
|
||||
void getHead();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Loading…
Reference in New Issue