Some C improvements
This commit is contained in:
parent
4baca74f5e
commit
37cb207d60
File diff suppressed because it is too large
Load Diff
1
test/cc/.gitignore
vendored
Normal file
1
test/cc/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
build
|
3
test/cc/c_first/CMakeLists.txt
Normal file
3
test/cc/c_first/CMakeLists.txt
Normal file
@ -0,0 +1,3 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
project(c_first C)
|
||||
add_executable(c_first main.c)
|
4
test/cc/c_first/main.c
Normal file
4
test/cc/c_first/main.c
Normal file
@ -0,0 +1,4 @@
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user