-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
6 lines (4 loc) · 8.64 KB
/
CMakeLists.txt
1
2
3
4
5
6
cmake_minimum_required(VERSION 3.23)
project(hello_world C)
set(CMAKE_C_STANDARD 99)
add_executable(hello_world basic-of-c/hello.c basic-of-c/testsizeof.c basic-of-c/testspec.c basic-of-c/opetators.c basic-of-c/array.c basic-of-c/strings.c basic-of-c/scanftest.c test-include/main.c test-include/num.c test-include/mainalt.c test-include/num.h test-macros/first.c test-macros/second.c test-macros/third.c test-macros/fourth.c test-macros/fifth.c test-functions/parameters/factorial.c test-functions/parameters/excange.c test-functions/parameters/add.c test-functions/return/factorial.c test-functions/return/exchange.c test-functions/recursion/factorial.c test-functions/recursion/fibonachi.c test-functions/scope/global.c test-functions/scope/auto.c test-functions/scope/shadows.c test-functions/scope/static.c test-functions/extern/app.c test-functions/extern/lib.c examples-pointer/basic/first.c examples-pointer/basic/second.c examples-pointer/basic/third.c examples-pointer/arithmetic-operations/first.c examples-pointer/arithmetic-operations/second.c examples-pointer/arithmetic-operations/third.c examples-pointer/arithmetic-operations/fourth.c examples-pointer/arithmetic-operations/fifth.c examples-pointer/constants/first.c examples-pointer/array/first.c examples-pointer/array/second.c examples-pointer/array/third.c examples-pointer/array-of-pointers/init.c examples-pointer/array-of-pointers/string.c examples-pointer/array-of-pointers/pointer-on-pointer.c examples-pointer/function-parameters/increment.c examples-pointer/function-parameters/swap.c examples-pointer/function-parameters/twice.c examples-pointer/dynamic_memory/one-dimensional-array.c examples-pointer/dynamic_memory/two-dimensional-array-with-dynamic-columns.c examples-pointer/dynamic_memory/two-dimensional-array.c examples-pointer/result-of-function/add-arrays.c examples-pointer/control-of-dynamic-memory/block.c examples-pointer/control-of-dynamic-memory/static.c examples-pointer/control-of-dynamic-memory/global.c examples-pointer/pointer-on-function/message.c examples-pointer/pointer-on-function/operation.c examples-pointer/pointer-on-function/operations-array.c examples-pointer/pointer-on-function-parameters-and-results/parameters.c examples-pointer/pointer-on-function-parameters-and-results/condition.c examples-pointer/pointer-on-function-parameters-and-results/returns.c examples-pointer/pointer-on-function-parameters-and-results/return-changed.c examples-pointer/functions-with-dynamic-count-of-parameters/sum.c examples-pointer/functions-with-dynamic-count-of-parameters/sum-va.c examples-pointer/functions-with-dynamic-count-of-parameters/display.c structure/intro/first.c structure/intro/second.c structure/intro/third.c structure/intro/typedef.c structure/intro/define.c structure/structure-as-element-structure/phone.c structure/pointer-on-struct/pointer-on-struct.c structure/arrays-of-structures/first.c structure/arrays-of-structures/second.c structure/structure-in-functions/time.c structure/structure-in-functions/time-p.c structure/structure-in-functions/time-input.c structure/union/intro.c structure/union/typedef.c structure/union/anon.c structure/union/pointer.c structure/bite-field/point.c structure/bite-field/code.c input-output/intro/first.c input-output/intro/handle_error.c input-output/binary/read-write.c input-output/struct/person.c input-output/struct/person-array.c input-output/text/first.c input-output/text/copy.c input-output/formated/fprintf.c input-output/formated/fscanf.c input-output/seek/intro.c input-output/terminal-io/first.c stephen-prata-book/third-chapter/second_exercise.c stephen-prata-book/third-chapter/third_exercise.c stephen-prata-book/third-chapter/examples/toobig.c stephen-prata-book/third-chapter/first_exercise.c stephen-prata-book/third-chapter/fourth_exercise.c stephen-prata-book/third-chapter/fifth.c stephen-prata-book/third-chapter/sixth.c stephen-prata-book/third-chapter/seventh.c stephen-prata-book/third-chapter/eighth.c stephen-prata-book/fourth-chapter/first.c stephen-prata-book/fourth-chapter/second.c stephen-prata-book/fourth-chapter/third.c stephen-prata-book/fourth-chapter/fourth.c stephen-prata-book/fourth-chapter/fifth.c stephen-prata-book/fourth-chapter/sixth.c stephen-prata-book/fourth-chapter/seventh.c stephen-prata-book/fourth-chapter/eighth.c stephen-prata-book/fifth-chapter/first.c stephen-prata-book/fifth-chapter/second.c stephen-prata-book/fifth-chapter/third.c stephen-prata-book/fifth-chapter/fourth.c stephen-prata-book/fifth-chapter/fifth.c stephen-prata-book/fifth-chapter/sixth.c stephen-prata-book/fifth-chapter/seventh.c stephen-prata-book/fifth-chapter/eighth.c stephen-prata-book/fifth-chapter/ninth.c stephen-prata-book/sixth-chapter/first.c stephen-prata-book/snipets/1-empty-main.c stephen-prata-book/sixth-chapter/second.c stephen-prata-book/sixth-chapter/third.c stephen-prata-book/sixth-chapter/fourth.c stephen-prata-book/sixth-chapter/fifth.c stephen-prata-book/snipets/2-enter-number.c stephen-prata-book/sixth-chapter/sixth.c stephen-prata-book/sixth-chapter/seventh.c stephen-prata-book/sixth-chapter/eighth.c stephen-prata-book/snipets/3-infinity-scanf.c stephen-prata-book/sixth-chapter/nineth.c stephen-prata-book/sixth-chapter/tenth.c stephen-prata-book/sixth-chapter/eleventh.c stephen-prata-book/sixth-chapter/twelfth.c stephen-prata-book/sixth-chapter/thirteenth.c stephen-prata-book/sixth-chapter/fourteenth.c stephen-prata-book/sixth-chapter/fifteenth.c stephen-prata-book/sixth-chapter/sixteenth.c stephen-prata-book/sixth-chapter/seventeenth.c stephen-prata-book/sixth-chapter/eighteenth.c stephen-prata-book/seventh-chapter/first.c stephen-prata-book/seventh-chapter/second.c stephen-prata-book/seventh-chapter/third.c stephen-prata-book/seventh-chapter/fourth.c stephen-prata-book/seventh-chapter/fifth.c stephen-prata-book/seventh-chapter/sixth.c stephen-prata-book/seventh-chapter/seventh.c stephen-prata-book/seventh-chapter/eighth.c stephen-prata-book/seventh-chapter/ninth.c stephen-prata-book/seventh-chapter/tenth.c stephen-prata-book/seventh-chapter/eleventh.c stephen-prata-book/eighth-chapter/first.c stephen-prata-book/eighth-chapter/second.c stephen-prata-book/eighth-chapter/third.c stephen-prata-book/eighth-chapter/fourth.c stephen-prata-book/eighth-chapter/fifth.c stephen-prata-book/eighth-chapter/sixth.c stephen-prata-book/eighth-chapter/seventh.c stephen-prata-book/eighth-chapter/eighth.c stephen-prata-book/ninth-chapter/first.c stephen-prata-book/ninth-chapter/second.c stephen-prata-book/ninth-chapter/third.c stephen-prata-book/ninth-chapter/fourth.c stephen-prata-book/ninth-chapter/fifth.c stephen-prata-book/ninth-chapter/sixth.c stephen-prata-book/ninth-chapter/seventh.c stephen-prata-book/ninth-chapter/eighth.c stephen-prata-book/ninth-chapter/ninth.c stephen-prata-book/ninth-chapter/tenth.c stephen-prata-book/ninth-chapter/eleventh.c stephen-prata-book/tenth-chapter/first.c stephen-prata-book/tenth-chapter/second.c stephen-prata-book/tenth-chapter/third.c stephen-prata-book/tenth-chapter/fourth.c stephen-prata-book/tenth-chapter/fifth.c stephen-prata-book/tenth-chapter/sixth.c stephen-prata-book/snipets/4-print-array.c stephen-prata-book/tenth-chapter/seventh.c stephen-prata-book/tenth-chapter/eighth.c stephen-prata-book/tenth-chapter/ninth.c stephen-prata-book/tenth-chapter/tenth.c stephen-prata-book/tenth-chapter/eleventh.c stephen-prata-book/tenth-chapter/twelfth.c stephen-prata-book/tenth-chapter/thirteenth.c stephen-prata-book/snipets/5-fill-arr.c stephen-prata-book/tenth-chapter/fourteenth.c stephen-prata-book/eleventh-chapter/examples/repeat.c stephen-prata-book/eleventh-chapter/first.c stephen-prata-book/eleventh-chapter/second.c stephen-prata-book/eleventh-chapter/third.c stephen-prata-book/eleventh-chapter/fourth.c stephen-prata-book/eleventh-chapter/fifth.c stephen-prata-book/eleventh-chapter/sixth.c stephen-prata-book/eleventh-chapter/seventh.c stephen-prata-book/eleventh-chapter/eighth.c stephen-prata-book/eleventh-chapter/ninth.c stephen-prata-book/eleventh-chapter/tenth.c stephen-prata-book/eleventh-chapter/twelfth.c stephen-prata-book/eleventh-chapter/thirteenth.c stephen-prata-book/eleventh-chapter/fourteenth.c stephen-prata-book/eleventh-chapter/fifteenth.c stephen-prata-book/eleventh-chapter/sixteenth.c stephen-prata-book/twelfth-chapter/4-count-calls.c stephen-prata-book/snipets/6-exit-failure.c stephen-prata-book/fourteenth-chapter/first.c stephen-prata-book/fifteenth-chapter/1-convert-str-to-int.c stephen-prata-book/sixteenth-chapter/examples/names_st.c stephen-prata-book/sixteenth-chapter/examples/names_st.h stephen-prata-book/sixteenth-chapter/examples/main.c examples/outer_declaration/app.c examples/outer_declaration/lib.c examples/outer_declaration/lib.h examples/outer_declaration/app1.c examples/outer_declaration/lib1.c)