libfixmath/CMakeLists.txt

28 lines
807 B
CMake
Raw Normal View History

2021-04-19 10:46:15 +02:00
cmake_minimum_required(VERSION 3.5)
project(libfixmath LANGUAGES CXX C)
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)
2021-04-29 08:40:06 +02:00
set(CMAKE_C_FLAGS "-Wall -pedantic -Wextra -Werror=return-type")
2021-04-19 10:46:15 +02:00
2021-04-29 08:40:06 +02:00
set(CMAKE_CXX_STANDARD 11)
2021-04-19 10:46:15 +02:00
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2021-04-29 08:40:06 +02:00
set(CMAKE_CXX_FLAGS "-Wall -pedantic -Wextra -Werror=return-type")
include(libfixmath/libfixmath.cmake)
include(tests/tests.cmake)
2021-04-19 10:46:15 +02:00
file(GLOB fixsingen-srcs fixsingen/*.c)
file(GLOB fixtest-srcs fixtest/*.c fixtest/*.h)
add_executable(fixtest ${fixtest-srcs})
target_link_libraries(fixtest PRIVATE libfixmath m)
target_include_directories(fixtest PRIVATE ${CMAKE_SOURCE_DIR})
add_executable(fixsingen ${fixsingen-srcs})
target_link_libraries(fixsingen PRIVATE libfixmath m)
target_include_directories(fixsingen PRIVATE ${CMAKE_SOURCE_DIR})
2021-04-29 08:40:06 +02:00