cmake_minimum_required (VERSION 3.5) project (Conjurer) set(CMAKE_C_COMPILER gcc) add_compile_options(-g -std=c99 -Wall -Wextra -Wformat -D__DEBUG__) LINK_LIBRARIES(compound) add_executable(ConjurerTest test.c)