uciadapter/CMakeLists.txt

31 lines
1.1 KiB
Text
Raw Normal View History

2022-01-30 20:19:02 +01:00
cmake_minimum_required(VERSION 3.10)
project(uciadapter)
# Configure Process
SET(process src/ProcessLinux.cpp)
2022-02-03 07:10:32 +01:00
SET(COMPILE_PLATFORM UNIX)
2022-01-30 20:19:02 +01:00
if(WIN32)
2022-02-03 07:10:32 +01:00
SET(process src/ProcessWindows.cpp)
SET(COMPILE_PLATFORM WIN32)
2022-02-03 08:27:56 +01:00
SET(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
2022-01-30 20:19:02 +01:00
endif()
add_library(uciadapter STATIC src/UCI.cpp ${process})
2022-01-30 20:19:02 +01:00
# Includes
set(UCIADAPTER_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/includes) # For conveniance
set(UCIADAPTER_INCLUDE_DIR ${UCIADAPTER_INCLUDE_DIR} PARENT_SCOPE) # To be used by other projects with add_subdirectory()
file(MAKE_DIRECTORY ${UCIADAPTER_INCLUDE_DIR})
2022-02-03 07:10:32 +01:00
configure_file(src/UCI.hpp.in ${UCIADAPTER_INCLUDE_DIR}/UCI.hpp)
2022-01-30 20:19:02 +01:00
configure_file(src/Process.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
configure_file(src/ProcessLinux.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
2022-02-03 08:27:56 +01:00
configure_file(src/ProcessWindows.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
target_include_directories(uciadapter PUBLIC ${UCIADAPTER_INCLUDE_DIR})
2022-01-30 20:19:02 +01:00
# Tests
# Unit tests
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
if(COMPILE_TESTS)
enable_testing()
add_subdirectory("tests/")
endif()