projectm-sys 1.2.2

Bindings for ProjectM
Documentation
1
2
3
4
5
6
7
8
9
10
11
execute_process(COMMAND "${CMAKE_CTEST_COMMAND}" --build "$ENV{GITHUB_WORKSPACE}/cmake-build"
        --build-config $ENV{BUILD_TYPE}
        -V
        WORKING_DIRECTORY "$ENV{GITHUB_WORKSPACE}/cmake-build"

        RESULT_VARIABLE result
        )

if(NOT result EQUAL 0)
    message(FATAL_ERROR "CTest returned bad exit status")
endif()