Skip to content

hnkr/CMake_Basics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CMake

Used to

  • Generate Makefile by writing scripts
  • Provide compiler-independent build process

Requirements

  • CMake
  • GNU Make
    • minimum version required: 4.1

Projects

  • create_&_use_library:
    • creates a library and then use it in main / app.
  • import_and_use_library:
    • Imports libmylib.a library ,that will be created by the 1st example, and uses it in main / app.