build: Linear Algebra temporarily removed from MSVC build

This commit is contained in:
Mateusz Pusz
2020-12-22 15:31:02 +01:00
parent 68058cfb25
commit d3f20e22a3

View File

@@ -36,13 +36,6 @@ add_example(experimental_angle)
add_example(foot_pound_second)
add_example(kalman_filter-alpha_beta_filter_example2)
find_package(linear_algebra CONFIG REQUIRED)
add_example(linear_algebra)
target_link_libraries(linear_algebra
PRIVATE
linear_algebra::linear_algebra
)
add_example(measurement)
add_example(unknown_dimension)
@@ -55,6 +48,15 @@ add_example(glide_computer)
add_example(hello_units)
add_example(total_energy)
# TODO "atomic constraint should be a constant expression" error in std::invocable
find_package(linear_algebra CONFIG REQUIRED)
add_example(linear_algebra)
target_link_libraries(linear_algebra
PRIVATE
linear_algebra::linear_algebra
)
add_subdirectory(alternative_namespaces)
endif()