renamed test binary

This commit is contained in:
Anthony Pesch 2015-08-30 00:47:37 -07:00
parent d264971537
commit cc88c48c7a
2 changed files with 6 additions and 6 deletions

View File

@ -302,8 +302,8 @@ set(DREAVM_TEST_SOURCES
# assign source groups for visual studio projects
source_group_by_dir(DREAVM_TEST_SOURCES)
add_executable(dreavm_gtest ${DREAVM_TEST_SOURCES})
target_include_directories(dreavm_gtest PUBLIC deps/gtest-1.7.0/include src/ test/ ${DREAVM_INCLUDE_DIRS})
target_link_libraries(dreavm_gtest gtest gtest_main ${DREAVM_LIBS})
target_compile_definitions(dreavm_gtest PRIVATE ${DREAVM_DEFS})
target_compile_options(dreavm_gtest PRIVATE ${DREAVM_COMPILE_FLAGS})
add_executable(dreavm_test ${DREAVM_TEST_SOURCES})
target_include_directories(dreavm_test PUBLIC deps/gtest-1.7.0/include src/ test/ ${DREAVM_INCLUDE_DIRS})
target_link_libraries(dreavm_test gtest gtest_main ${DREAVM_LIBS})
target_compile_definitions(dreavm_test PRIVATE ${DREAVM_DEFS})
target_compile_options(dreavm_test PRIVATE ${DREAVM_COMPILE_FLAGS})

View File

@ -47,5 +47,5 @@ Command line flags are loaded from and saved to `$HOME/.dreavm/flags` each run.
## Running tests
```shell
dreavm_gtest
dreavm_test
```