Работа над документацией
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
build
|
||||
sandbox
|
||||
@@ -0,0 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(neurox)
|
||||
set(HEADERS headers/_header.h)
|
||||
set(INCLUDES includes/include.h)
|
||||
set(SOURCES src/source.c)
|
||||
add_library(template SHARED ${INCLUDES} ${HEADERS} ${SOURCES})
|
||||
target_include_directories(neurox PUBLIC includes PRIVATE headers)
|
||||
@@ -0,0 +1 @@
|
||||
# DAIRY.md
|
||||
@@ -0,0 +1 @@
|
||||
# PROGRESS.md
|
||||
@@ -0,0 +1 @@
|
||||
# README.md
|
||||
@@ -0,0 +1 @@
|
||||
# TODO.md
|
||||
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @author admin@felexdev.ru
|
||||
* @version 1.0.0
|
||||
*
|
||||
* @brief Header template
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif //__cplusplus
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif //__cplusplus
|
||||
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @author admin@felexdev.ru
|
||||
* @version 1.0.0
|
||||
*
|
||||
* @brief Include emplate
|
||||
* */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif //__cplusplus
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif //__cplusplus
|
||||
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @author admin@felexdev.ru
|
||||
* @version 1.0.0
|
||||
*
|
||||
* @brief Sourcecode template
|
||||
*/
|
||||
|
||||
int example() {
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user