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:
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal 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/)
|
||||
Reference in New Issue
Block a user