-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
CMakeLists.txt
26 lines (22 loc) · 883 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
cmake_minimum_required(VERSION 3.22)
# Setup project
project(LwLibPROJECT)
if(NOT PROJECT_IS_TOP_LEVEL)
add_subdirectory(lwgps)
else()
add_executable(${PROJECT_NAME})
target_sources(${PROJECT_NAME} PRIVATE
${CMAKE_CURRENT_LIST_DIR}/dev/main.cpp
${CMAKE_CURRENT_LIST_DIR}/examples/test_code.c
)
target_include_directories(${PROJECT_NAME} PUBLIC
${CMAKE_CURRENT_LIST_DIR}/dev
)
# Add subdir with lwgps and link to project
set(LWGPS_OPTS_FILE ${CMAKE_CURRENT_LIST_DIR}/dev/lwgps_opts.h)
add_subdirectory(lwgps)
target_link_libraries(${PROJECT_NAME} PUBLIC lwgps)
# Add compile options to the library, which will propagate options to executable through public link
target_compile_definitions(lwgps PUBLIC WIN32 _DEBUG CONSOLE LWGPS_DEV)
target_compile_options(lwgps PUBLIC -Wall -Wextra -Wpedantic)
endif()