Add naive implementation
This commit is contained in:
commit
748b5ae9e4
5 changed files with 142 additions and 0 deletions
15
CMakeLists.txt
Normal file
15
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Set minimum version of CMake
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/toolchain.cmake)
|
||||
include(${CMAKE_TOOLCHAIN_FILE})
|
||||
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
project(
|
||||
dct
|
||||
LANGUAGES C)
|
||||
|
||||
add_executable(dct main.c)
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue