Remove needless include paths on UNIX
This commit is contained in:
parent
0cddcdca10
commit
926478e8dc
|
@ -50,12 +50,6 @@ include_directories(
|
||||||
../../lib/
|
../../lib/
|
||||||
)
|
)
|
||||||
|
|
||||||
if (UNIX)
|
|
||||||
include_directories(
|
|
||||||
../../..
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_executable(synergyc ${sources})
|
add_executable(synergyc ${sources})
|
||||||
target_link_libraries(synergyc
|
target_link_libraries(synergyc
|
||||||
arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS})
|
arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS})
|
||||||
|
|
|
@ -22,12 +22,6 @@ include_directories(
|
||||||
../../lib/
|
../../lib/
|
||||||
)
|
)
|
||||||
|
|
||||||
if (UNIX)
|
|
||||||
include_directories(
|
|
||||||
../../..
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
add_executable(synergyd WIN32 ${sources})
|
add_executable(synergyd WIN32 ${sources})
|
||||||
else()
|
else()
|
||||||
|
|
|
@ -50,12 +50,6 @@ include_directories(
|
||||||
../../lib/
|
../../lib/
|
||||||
)
|
)
|
||||||
|
|
||||||
if (UNIX)
|
|
||||||
include_directories(
|
|
||||||
../../..
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_executable(synergys ${sources})
|
add_executable(synergys ${sources})
|
||||||
target_link_libraries(synergys
|
target_link_libraries(synergys
|
||||||
arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS})
|
arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS})
|
||||||
|
|
|
@ -21,12 +21,6 @@ include_directories(
|
||||||
../../lib/
|
../../lib/
|
||||||
)
|
)
|
||||||
|
|
||||||
if (UNIX)
|
|
||||||
include_directories(
|
|
||||||
../../..
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_executable(syntool ${sources})
|
add_executable(syntool ${sources})
|
||||||
target_link_libraries(syntool
|
target_link_libraries(syntool
|
||||||
synlib arch base client common io ipc mt net platform server ${libs} ${OPENSSL_LIBS})
|
synlib arch base client common io ipc mt net platform server ${libs} ${OPENSSL_LIBS})
|
||||||
|
|
Loading…
Reference in New Issue