Remove needless include paths on UNIX

This commit is contained in:
Andrew Nelless 2017-03-09 13:45:52 +00:00
parent 0cddcdca10
commit 926478e8dc
4 changed files with 0 additions and 24 deletions

View File

@ -50,12 +50,6 @@ include_directories(
../../lib/
)
if (UNIX)
include_directories(
../../..
)
endif()
add_executable(synergyc ${sources})
target_link_libraries(synergyc
arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS})

View File

@ -22,12 +22,6 @@ include_directories(
../../lib/
)
if (UNIX)
include_directories(
../../..
)
endif()
if (WIN32)
add_executable(synergyd WIN32 ${sources})
else()

View File

@ -50,12 +50,6 @@ include_directories(
../../lib/
)
if (UNIX)
include_directories(
../../..
)
endif()
add_executable(synergys ${sources})
target_link_libraries(synergys
arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS})

View File

@ -21,12 +21,6 @@ include_directories(
../../lib/
)
if (UNIX)
include_directories(
../../..
)
endif()
add_executable(syntool ${sources})
target_link_libraries(syntool
synlib arch base client common io ipc mt net platform server ${libs} ${OPENSSL_LIBS})