CMake Migration

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.
This commit is contained in:
2024-02-04 19:13:13 -05:00
parent 9854118958
commit cfe045acc3
6 changed files with 12 additions and 79 deletions

10
CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
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/)