Rename CMakeListsLocal.txt to CMakeListsPrivate.txt // Issue #523

This commit is contained in:
Ivan Kravets
2016-02-29 17:33:08 +02:00
parent b0ba8ae5e3
commit 98026d83b6
6 changed files with 10 additions and 4 deletions

View File

@ -1,2 +1,2 @@
.pioenvs
CMakeListsLocal.txt
CMakeListsPrivate.txt

6
examples/ide/clion/.idea/encodings.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="PROJECT" charset="UTF-8" />
</component>
</project>

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.2)
project(clion)
include(CMakeListsLocal.txt)
include(CMakeListsPrivate.txt)
add_definitions(-DF_CPU=16000000L)
add_definitions(-DARDUINO_ARCH_AVR)

View File

@ -1,2 +1,2 @@
.pioenvs
CMakeListsLocal.txt
CMakeListsPrivate.txt

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.2)
project({{project_name}})
include(CMakeListsLocal.txt)
include(CMakeListsPrivate.txt)
% for define in defines:
add_definitions(-D{{!define}})