don't look backwards for script-engine headers from particles library

This commit is contained in:
Stephen Birarda 2014-08-08 10:06:56 -07:00
parent c63e886444
commit a75a3f9434
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ setup_hifi_library(${TARGET_NAME})
include_glm(${TARGET_NAME} "${ROOT_DIR}")
link_hifi_libraries(${TARGET_NAME} shared octree fbx networking animation)
include_hifi_library_headers(script-engine)
find_package(Qt5 COMPONENTS Gui Network Script)

View file

@ -22,7 +22,7 @@
// I'm open to other potential solutions. Could we change cmake to allow libraries to reference each others
// headers, but not link to each other, this is essentially what this construct is doing, but would be
// better to add includes to the include path, but not link
#include "../../script-engine/src/ScriptEngine.h"
#include <ScriptEngine.h>
#include "ParticlesScriptingInterface.h"
#include "Particle.h"