Skip to content
Snippets Groups Projects
Commit 980bf79b authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Merge branch 'frame-base-tests' into 'master'

Ctest configuration

This replicates issue #115 , which in turn traces back to !103, regarding `ctest` and `gtest`.

I finally left the project as this (checkout branch `frame-base-tests`):

  - `wolf/src/tests` --> here all the gtest files are located

  - In `wolf/CMakeLists.txt` 

```cmake
if(BUILD_TESTS)
    enable_testing()
endif()
```

  - In `wolf/src/CMakeLists.txt`

```cmake
if(BUILD_TESTS)    
    MESSAGE("Building tests.")
    add_subdirectory(test)
endif()
```

See merge request !104
parents e6bb58bf cc9ff40c
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment