blob: 552a8c869a46e08d7b7f41a6c1465debbb1d866b [file] [log] [blame]
Manish Pandey65fe3642025-03-21 12:44:42 +00001#
2# SPDX-License-Identifier: BSD-3-Clause
3# SPDX-FileCopyrightText: Copyright LibTL Contributors.
4#
5
6include_guard()
7
8set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
9set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
10set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
11set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
12
13add_compile_options(
14 "-fno-common"
15 "-ffunction-sections"
16 "-fdata-sections"
17 "-Wall"
18 "-Werror"
19 "-gdwarf-4"
20 "$<$<CONFIG:Debug>:-Og>"
21 "$<$<CONFIG:Release>:-g>"
22 )
23
24add_link_options(
25 "-Wl,--gc-sections"
26 "-g"
27 )