2011-01-15 04:01:31 +00:00
|
|
|
# synergy -- mouse and keyboard sharing utility
|
|
|
|
# Copyright (C) 2009 Chris Schoeneman, Nick Bolton, Sorin Sbarnea
|
2011-01-15 02:20:14 +00:00
|
|
|
#
|
|
|
|
# This package is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# found in the file COPYING that should have accompanied this file.
|
|
|
|
#
|
|
|
|
# This package is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
SET(root_cmd_synergys ${root_dir}/cmd/synergys)
|
|
|
|
|
|
|
|
SET(src_cmd_synergys_common
|
|
|
|
${root_cmd_synergys}/synergys.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(src_cmd_synergys_xwindows
|
|
|
|
${root_cmd_synergys}/CXWindowsServerTaskBarReceiver.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(src_cmd_synergys_mswindows
|
|
|
|
${root_cmd_synergys}/CMSWindowsServerTaskBarReceiver.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(inc_cmd_synergys_mswindows
|
|
|
|
${root_cmd_synergys}/CMSWindowsServerTaskBarReceiver.h
|
|
|
|
${root_cmd_synergys}/resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(res_cmd_synergys_mswindows
|
|
|
|
${root_cmd_synergys}/synergys.ico
|
|
|
|
${root_cmd_synergys}/synergys.rc
|
|
|
|
${root_cmd_synergys}/tb_error.ico
|
|
|
|
${root_cmd_synergys}/tb_idle.ico
|
|
|
|
${root_cmd_synergys}/tb_run.ico
|
|
|
|
${root_cmd_synergys}/tb_wait.ico
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(src_cmd_synergys_carbon
|
|
|
|
${root_cmd_synergys}/COSXServerTaskBarReceiver.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(src_cmd_synergys ${src_cmd_synergys_common})
|
|
|
|
|
|
|
|
IF(UNIX)
|
|
|
|
|
|
|
|
IF(APPLE)
|
|
|
|
LIST(APPEND src_cmd_synergys ${src_cmd_synergys_carbon})
|
|
|
|
ELSE(APPLE)
|
|
|
|
LIST(APPEND src_cmd_synergys ${src_cmd_synergys_xwindows})
|
|
|
|
ENDIF(APPLE)
|
|
|
|
|
|
|
|
ELSE(UNIX)
|
|
|
|
|
|
|
|
LIST(APPEND src_cmd_synergys
|
|
|
|
${inc_cmd_synergys_mswindows}
|
|
|
|
${res_cmd_synergys_mswindows}
|
|
|
|
${src_cmd_synergys_mswindows}
|
|
|
|
)
|
|
|
|
|
|
|
|
ENDIF(UNIX)
|
|
|
|
|
|
|
|
SET(inc_dirs_cmd_synergys
|
|
|
|
${root_dir}
|
|
|
|
${root_dir}/lib
|
|
|
|
${root_dir}/lib/arch
|
|
|
|
${root_dir}/lib/base
|
|
|
|
${root_dir}/lib/common
|
|
|
|
${root_dir}/lib/io
|
|
|
|
${root_dir}/lib/mt
|
|
|
|
${root_dir}/lib/net
|
|
|
|
${root_dir}/lib/platform
|
|
|
|
${root_dir}/lib/synergy
|
|
|
|
${root_dir}/lib/server
|
|
|
|
)
|
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES(${inc_dirs_cmd_synergys})
|
|
|
|
ADD_EXECUTABLE(synergys ${src_cmd_synergys})
|
|
|
|
TARGET_LINK_LIBRARIES(synergys synergy ${libs})
|