hyporo-cpp/CMakeLists.txt
2022-09-22 20:43:06 +05:00

24 lines
338 B
CMake

cmake_minimum_required (VERSION 3.16)
project(
hyporo
VERSION 0.20.0
LANGUAGES CXX
)
option(WITH_GTESTS "Enable GTest unit testing" ON)
enable_testing()
if(WITH_GTESTS)
include(${CMAKE_SOURCE_DIR}/cmake/googletest.cmake)
include(GoogleTest)
endif()
add_definitions(-DPRECISION_FLOAT)
add_subdirectory(source)