Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 535 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 535 Bytes

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.