Moved the build system over to CMake. This build system right now replicates the same functionality as our bash scripts from earlier. Will need a lot of refactoring to be more complete, but for now we are fully on CMake.
11 lines
269 B
CMake
11 lines
269 B
CMake
cmake_minimum_required(VERSION 3.28.1)
|
|
|
|
project(quantum-utils)
|
|
|
|
add_library(quantum SHARED ./quantum/src/test.c)
|
|
|
|
add_executable(test_stuff ./test_stuff/src/main.c)
|
|
|
|
target_link_libraries(test_stuff quantum)
|
|
target_include_directories(test_stuff PUBLIC ./quantum/src/)
|