27 lines
732 B
CMake
27 lines
732 B
CMake
#---Adding all electromagnetic examples subdirectories explicitly
|
|
|
|
cmake_minimum_required(VERSION 3.8...3.18)
|
|
if(${CMAKE_VERSION} VERSION_LESS 3.12)
|
|
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
|
|
endif()
|
|
|
|
add_subdirectory(TestEm0)
|
|
add_subdirectory(TestEm1)
|
|
add_subdirectory(TestEm2)
|
|
add_subdirectory(TestEm3)
|
|
add_subdirectory(TestEm4)
|
|
add_subdirectory(TestEm5)
|
|
add_subdirectory(TestEm6)
|
|
add_subdirectory(TestEm7)
|
|
add_subdirectory(TestEm8)
|
|
add_subdirectory(TestEm9)
|
|
add_subdirectory(TestEm10)
|
|
add_subdirectory(TestEm11)
|
|
add_subdirectory(TestEm12)
|
|
add_subdirectory(TestEm13)
|
|
add_subdirectory(TestEm14)
|
|
add_subdirectory(TestEm15)
|
|
add_subdirectory(TestEm16)
|
|
add_subdirectory(TestEm17)
|
|
add_subdirectory(TestEm18)
|