Remove cmd dir from include paths

This commit is contained in:
Andrew Nelless 2017-03-09 14:03:00 +00:00
parent 2b3d3f9339
commit 50dc29394e
12 changed files with 12 additions and 16 deletions

View File

@ -46,7 +46,6 @@ if (SYNERGY_ADD_HEADERS)
endif() endif()
include_directories( include_directories(
../
../../lib/ ../../lib/
) )

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "synergyc/MSWindowsClientTaskBarReceiver.h" #include "MSWindowsClientTaskBarReceiver.h"
#include "resource.h" #include "resource.h"
#include "client/Client.h" #include "client/Client.h"

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "synergyc/OSXClientTaskBarReceiver.h" #include "OSXClientTaskBarReceiver.h"
#include "arch/Arch.h" #include "arch/Arch.h"
// //

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "synergyc/XWindowsClientTaskBarReceiver.h" #include "XWindowsClientTaskBarReceiver.h"
#include "arch/Arch.h" #include "arch/Arch.h"
// //

View File

@ -22,11 +22,11 @@
#include "base/EventQueue.h" #include "base/EventQueue.h"
#if WINAPI_MSWINDOWS #if WINAPI_MSWINDOWS
#include "synergyc/MSWindowsClientTaskBarReceiver.h" #include "MSWindowsClientTaskBarReceiver.h"
#elif WINAPI_XWINDOWS #elif WINAPI_XWINDOWS
#include "synergyc/XWindowsClientTaskBarReceiver.h" #include "XWindowsClientTaskBarReceiver.h"
#elif WINAPI_CARBON #elif WINAPI_CARBON
#include "synergyc/OSXClientTaskBarReceiver.h" #include "OSXClientTaskBarReceiver.h"
#else #else
#error Platform not supported. #error Platform not supported.
#endif #endif

View File

@ -18,7 +18,6 @@ file(GLOB headers "*.h")
file(GLOB sources "*.cpp") file(GLOB sources "*.cpp")
include_directories( include_directories(
../
../../lib/ ../../lib/
) )

View File

@ -46,7 +46,6 @@ if (SYNERGY_ADD_HEADERS)
endif() endif()
include_directories( include_directories(
../
../../lib/ ../../lib/
) )

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "synergys/MSWindowsServerTaskBarReceiver.h" #include "MSWindowsServerTaskBarReceiver.h"
#include "resource.h" #include "resource.h"
#include "server/Server.h" #include "server/Server.h"

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "synergys/OSXServerTaskBarReceiver.h" #include "OSXServerTaskBarReceiver.h"
#include "arch/Arch.h" #include "arch/Arch.h"
// //

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "synergys/XWindowsServerTaskBarReceiver.h" #include "XWindowsServerTaskBarReceiver.h"
#include "arch/Arch.h" #include "arch/Arch.h"
// //

View File

@ -22,11 +22,11 @@
#include "base/EventQueue.h" #include "base/EventQueue.h"
#if WINAPI_MSWINDOWS #if WINAPI_MSWINDOWS
#include "synergys/MSWindowsServerTaskBarReceiver.h" #include "MSWindowsServerTaskBarReceiver.h"
#elif WINAPI_XWINDOWS #elif WINAPI_XWINDOWS
#include "synergys/XWindowsServerTaskBarReceiver.h" #include "XWindowsServerTaskBarReceiver.h"
#elif WINAPI_CARBON #elif WINAPI_CARBON
#include "synergys/OSXServerTaskBarReceiver.h" #include "OSXServerTaskBarReceiver.h"
#else #else
#error Platform not supported. #error Platform not supported.
#endif #endif

View File

@ -17,7 +17,6 @@ file(GLOB headers "*.h")
file(GLOB sources "*.cpp") file(GLOB sources "*.cpp")
include_directories( include_directories(
../
../../lib/ ../../lib/
) )