Initialize CMakeProject for Kousaten

sw
Markus Koch 2019-06-16 17:11:20 +02:00
parent 7544e4256a
commit 0072ed418b
4 changed files with 22 additions and 0 deletions

5
sw/kousaten/.gitignore vendored 100644
View File

@ -0,0 +1,5 @@
*.user
*~
Makefile
*.autosave
build-*

View File

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 2.8)
project(kousaten)
#set(CMAKE_BUILD_TYPE Release)
set(CMAKE_C_FLAGS "-Wall")
aux_source_directory(./src SRC_LIST)
add_executable(${PROJECT_NAME} ${SRC_LIST})

View File

@ -0,0 +1,2 @@
# TTL-FPGA Compiler *Kousaten*
Tool to generate bitstreams for the TTL-FPGA after manual synthesis and PNR.

View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}