-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(library): fixed some issues and increased version to 1.0.1
- Loading branch information
Dr. Steven Strange
committed
Aug 14, 2023
1 parent
fe87fe7
commit dc272c2
Showing
10 changed files
with
58 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# !!! WARNING !!! AUTO-GENERATED FILE, PLEASE DO NOT MODIFY IT AND USE | ||
# https://docs.platformio.org/page/projectconf/section_env_build.html#build-flags | ||
# | ||
# If you need to override existing CMake configuration or add extra, | ||
# please create `CMakeListsUser.txt` in the root of project. | ||
# The `CMakeListsUser.txt` will not be overwritten by PlatformIO. | ||
|
||
cmake_minimum_required(VERSION 3.13) | ||
set(CMAKE_SYSTEM_NAME Generic) | ||
set(CMAKE_C_COMPILER_WORKS 1) | ||
set(CMAKE_CXX_COMPILER_WORKS 1) | ||
|
||
project("dialer" C CXX) | ||
|
||
include(CMakeListsPrivate.txt) | ||
|
||
if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/CMakeListsUser.txt) | ||
include(CMakeListsUser.txt) | ||
endif () | ||
|
||
add_custom_target( | ||
Production ALL | ||
COMMAND platformio -c clion run "$<$<NOT:$<CONFIG:All>>:-e${CMAKE_BUILD_TYPE}>" | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
Debug ALL | ||
COMMAND platformio -c clion debug "$<$<NOT:$<CONFIG:All>>:-e${CMAKE_BUILD_TYPE}>" | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
; PlatformIO Project Configuration File | ||
; | ||
; Build options: build flags, source filter | ||
; Upload options: custom upload port, speed and extra flags | ||
; Library options: dependencies, extra library storages | ||
; Advanced options: extra scripting | ||
; | ||
; Please visit documentation for the other options and examples | ||
; https://docs.platformio.org/page/projectconf.html | ||
|
||
[platformio] | ||
description = Abstract sensor interfaces for the AhmsVille Dial2 | ||
default_envs = native | ||
|
||
[env:native] | ||
platform = native | ||
build_flags = -std=gnu++17 | ||
build_unflags = -std=gnu++11 |
Empty file.