aboutsummaryrefslogtreecommitdiff
path: root/unit/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'unit/CMakeLists.txt')
-rw-r--r--unit/CMakeLists.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/unit/CMakeLists.txt b/unit/CMakeLists.txt
deleted file mode 100644
index 7025a16..0000000
--- a/unit/CMakeLists.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-cmake_minimum_required(VERSION 3.10)
-
-# Project and C standard configuration
-project(bhunit LANGUAGES C)
-set(CMAKE_C_STANDARD 90)
-set(CMAKE_C_STANDARD_REQUIRED ON)
-
-# Disable extensions
-set(CMAKE_C_EXTENSIONS OFF)
-
-# Library code
-set(BHUNIT_SOURCE
- src/Unit.c
-)
-
-set(BHUNIT_HEADER
- include/BH/Unit.h
-)
-
-# Library
-add_library(BHUnit STATIC ${BHUNIT_SOURCE} ${BHUNIT_HEADER})
-target_include_directories(BHUnit PUBLIC include)