c993b6059a
Also updates main CMakeLists.txt and CMakeLists.txt for unit tests, also adds additional build directories to .gitignore file
16 lines
219 B
CMake
16 lines
219 B
CMake
if(BUILD_TESTS)
|
|
add_subdirectory(test-input)
|
|
|
|
if(OS_WINDOWS)
|
|
add_subdirectory(win)
|
|
endif()
|
|
|
|
if(OS_POSIX)
|
|
add_subdirectory(osx)
|
|
endif()
|
|
endif()
|
|
|
|
if(ENABLE_UNIT_TESTS)
|
|
add_subdirectory(cmocka)
|
|
endif()
|