I have the following CMakeLists.txt
:
cmake_minimum_required(VERSION 3.0.0)
project(FlaAlgoTests)
...
include_directories("../lib")
...
add_executable(
flamenco_algorithms_anomaly_stiction_tests
...
)
The flamenco_algorithms_anomaly_stiction_tests
executable generates a .xml
file when it is complete.
I would like to run a process (I guess using ADD_CUSTOM_COMMAND
?) after this executable is run, which converts that xml file to an html file.
How can I do this?