Hitting the right path for the sync library includes.

This commit is contained in:
mathieu _alkama_ m 2015-12-12 20:46:09 +01:00
parent 0873e2e6f7
commit 0384575ab4
8 changed files with 11 additions and 14 deletions

View File

@ -5,7 +5,7 @@
#else
#include <unistd.h>
#endif
#include "../../sync/sync.h"
#include "../../lib/sync.h"
static struct sync_device *device;
#if !defined(SYNC_PLAYER)

View File

@ -2,8 +2,8 @@
#include "RemoteConnection.h"
#include "TrackData.h"
#include "TrackView.h"
#include "../../sync/sync.h"
#include "../../sync/track.h"
#include "../../lib/sync.h"
#include "../../lib/track.h"
#include <stdlib.h>
#include <stdio.h>
#include <emgui/Types.h>

View File

@ -14,9 +14,8 @@
#include "Commands.h"
#include "MinecraftiaFont.h"
#include "Window.h"
#include "../../sync/sync.h"
#include "../../sync/base.h"
#include "../../sync/data.h"
#include "../../lib/sync.h"
#include "../../lib/base.h"
#include <emgui/Emgui.h>
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -22,8 +22,8 @@
#include <arpa/inet.h>
#endif
#include "../../sync/base.h"
#include "../../sync/track.h"
#include "../../lib/base.h"
#include "../../lib/track.h"
#include "rlog.h"
#include <stdio.h>

View File

@ -1,7 +1,7 @@
#pragma once
#include <emgui/Types.h>
#include "../../sync/data.h"
#include "../../lib/track.h"
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -7,9 +7,8 @@
#include "rlog.h"
#include "minmax.h"
#include "ImageData.h"
#include "../../sync/sync.h"
#include "../../sync/data.h"
#include "../../sync/track.h"
#include "../../lib/sync.h"
#include "../../lib/track.h"
#if defined(__APPLE__)
#include <OpenGL/OpenGL.h>

View File

@ -3,7 +3,6 @@
#include "TrackData.h"
#include "../external/mxml/mxml.h"
#include "RemoteConnection.h"
#include "../../sync/data.h"
#include <stdio.h>
#include <stdlib.h>
#include <emgui/Types.h>

View File

@ -65,7 +65,7 @@ StaticLibrary {
Sources = {
Glob {
Dir = "../sync",
Dir = "../lib",
Extensions = { ".c" },
},
},