0% found this document useful (0 votes)
19 views

C Make Lists

Uploaded by

Veda Varnekar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views

C Make Lists

Uploaded by

Veda Varnekar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

#..............................................................

# CMakeList.txt : CMake project for CMakeProject1, include source and define


# project specific logic here.
#..............................................................

cmake_minimum_required (VERSION 3.8)

project ("CompilerAssignment")

# Add source to this project's executable.


add_executable (CompilerAssignment
"Compilers.h" "Compilers.c"
"Buffer.h" "Buffer.c" "MainBuffer.c"
)

# TO_DO: Add tests and install targets if needed.

You might also like