Github actions for MSVC

This commit is contained in:
John Wellbelove 2020-08-12 10:26:39 +01:00
parent b8389c7134
commit dc501fa2c4
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
- name: Build and run
run: |
cmake -DNO_STL=0 ./
cmake ./
MSBuild etl.sln
build-visual-studio-no-stl:

View File

@ -3,7 +3,7 @@ project(etl_unit_tests)
add_definitions(-DETL_DEBUG)
if (NO_STL EQUAL 1)
if (${NO_STL})
message(STATUS "Compiling for No STL")
add_definitions(-DETL_NO_STL)
endif()