diff --git a/.appveyor.yml b/.appveyor.yml index d7cea35..bf9ceb7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,7 +24,7 @@ install: - conda info -a - conda install cmake -c conda-forge - cmake -G "NMake Makefiles" -D BUILD_TESTS=1 -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release . - - nmake gtest + - nmake gcem_tests - cd tests build_script: @@ -53,4 +53,3 @@ build_script: - .\sqrt.test - .\tan.test - .\tanh.test - - ls -al diff --git a/README.md b/README.md index 7e265b9..97c183b 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ mkdir build cd build cmake ../ -DBUILD_TESTS=1 -DCMAKE_INSTALL_PREFIX=/gcem/install/location -make gtest +make gcem_tests cd tests ./exp.test diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9f5fcab..cab405b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -96,6 +96,6 @@ foreach( file_ ${GCEM_TESTS} ) list(APPEND GCEM_TESTS_EX ${testname}) endforeach() -add_custom_target(gtest DEPENDS ${GCEM_TESTS_EX}) +add_custom_target(gcem_tests DEPENDS ${GCEM_TESTS_EX}) #