created tools dir and moved gtest and build into there, and trimmed some CMakeLists.txt files

This commit is contained in:
Nick Bolton 2011-04-25 16:20:49 +00:00
parent 85f66153ab
commit 0aa76fd05f
179 changed files with 6 additions and 27 deletions

View File

@ -57,8 +57,6 @@ INCLUDE(${cmake_dir}/CMakeLists_launcher.txt)
INCLUDE(${cmake_dir}/CMakeLists_gtest.txt) INCLUDE(${cmake_dir}/CMakeLists_gtest.txt)
INCLUDE(${cmake_dir}/CMakeLists_test.txt) INCLUDE(${cmake_dir}/CMakeLists_test.txt)
#add_subdirectory(third_party/gtest)
if (CONF_CPACK) if (CONF_CPACK)
# Setup the CPack config. # Setup the CPack config.
INCLUDE(${cmake_dir}/CMakeLists_cpack.txt) INCLUDE(${cmake_dir}/CMakeLists_cpack.txt)

View File

@ -13,12 +13,10 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
SET(root_lib ${root_dir}/lib)
SET(inc_gtest_dirs SET(inc_gtest_dirs
${root_dir}/third_party/gtest ${root_dir}/tools/gtest
${root_dir}/third_party/gtest/include ${root_dir}/tools/gtest/include
) )
INCLUDE_DIRECTORIES(${inc_gtest_dirs}) INCLUDE_DIRECTORIES(${inc_gtest_dirs})
ADD_LIBRARY(gtest STATIC ${root_dir}/third_party/gtest/src/gtest-all.cc) ADD_LIBRARY(gtest STATIC ${root_dir}/tools/gtest/src/gtest-all.cc)

View File

@ -309,7 +309,6 @@ SET(src_lib_synergy
${root_lib}/synergy/ProtocolTypes.cpp ${root_lib}/synergy/ProtocolTypes.cpp
${root_lib}/synergy/XScreen.cpp ${root_lib}/synergy/XScreen.cpp
${root_lib}/synergy/XSynergy.cpp ${root_lib}/synergy/XSynergy.cpp
${root_dir}/third_party/gtest/src/gtest-all.cc
) )
SET(inc_lib_synergy SET(inc_lib_synergy

View File

@ -15,7 +15,7 @@
# Include all files that have unit tests # Include all files that have unit tests
set(unittests set(unittests
${root_dir}/third_party/gtest/src/gtest_main.cc ${root_dir}/tools/gtest/src/gtest_main.cc
${root_dir}/src/unittest/synergy/CClipboardTests.cpp ${root_dir}/src/unittest/synergy/CClipboardTests.cpp
) )
@ -41,24 +41,6 @@ if(UNIX)
endif() endif()
endif() endif()
set(inc
${root_dir}
${root_dir}/lib
${root_dir}/lib/arch
${root_dir}/lib/base
${root_dir}/lib/client
${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}/third_party/gtest
${root_dir}/third_party/gtest/include
)
include_directories(${inc})
add_executable(unittests ${unittests}) add_executable(unittests ${unittests})
target_link_libraries(unittests synergy gtest ${libs}) target_link_libraries(unittests synergy gtest ${libs})

2
hm.py
View File

@ -30,6 +30,8 @@
# This will create an in-source UNIX Makefile. # This will create an in-source UNIX Makefile.
import sys, os import sys, os
sys.path.append('tools')
from build import toolchain from build import toolchain
from getopt import gnu_getopt from getopt import gnu_getopt

Some files were not shown because too many files have changed in this diff Show More