1c528733
Peter M. Groen
Setting up a firs...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
cmake_minimum_required(VERSION 3.10)
project(osdev_xml)
LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake)
# =================================================================
# = Include build information
include(projectheader)
project_header(osdev_xml)
add_subdirectory(src)
#add_subdirectory(test)
#add_subdirectory(examples)
include(packaging)
package_component()
|