Blame view

CMakeLists.txt 402 Bytes
48b4c725   Peter M. Groen   Setting up Socket-pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  cmake_minmum_required(VERSION 3.20)
  project(osdev-socket-cpp)
  
  LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
  
  # ===========================================================================
  # == Include build information
  include(osdevversion)
  include(projectheader)
  
  project_header(osdev-socket-cpp)
  
  include(compiler)
  
  add_subdirectory(src)
  add_subdirectory(examples)
  add_subdirectory(tests)