summaryrefslogtreecommitdiff
path: root/libs/xml.c/CMakeLists.txt
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@mailbox.org>2026-01-09 15:28:38 +0100
committerAldrik Ramaekers <aldrik@mailbox.org>2026-01-09 15:28:38 +0100
commit210404a73706993d197c1290d5a411394e176fbe (patch)
tree93c3ea9fc4691ca42f26dd92c6e14627af0b47af /libs/xml.c/CMakeLists.txt
parenta65e876f3277a7d7fca6e5129ac3e200dae2d0dc (diff)
remove unused lib files
Diffstat (limited to 'libs/xml.c/CMakeLists.txt')
-rw-r--r--libs/xml.c/CMakeLists.txt51
1 files changed, 0 insertions, 51 deletions
diff --git a/libs/xml.c/CMakeLists.txt b/libs/xml.c/CMakeLists.txt
deleted file mode 100644
index 698dc78..0000000
--- a/libs/xml.c/CMakeLists.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-# Project setup
-project(xml C CXX)
-set(VERSION_MAJOR "0")
-set(VERSION_MINOR "2")
-set(VERSION_PATCH "0")
-cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
-
-
-# Define main library target
-add_library(xml STATIC "")
-
-
-# Compiler setup
-target_compile_options(
- xml
- PRIVATE
- -std=c11
-)
-
-
-# Options
-option(XML_PARSER_VERBOSE "Enable to be told everything the xml parser does" OFF)
-
-if(XML_PARSER_VERBOSE)
- target_compile_definitions(
- xml
- PRIVATE
- XML_PARSER_VERBOSE
- )
-endif(XML_PARSER_VERBOSE)
-
-
-# Sources
-target_sources(
- xml
- PRIVATE
- "${CMAKE_CURRENT_LIST_DIR}/src/xml.c"
-)
-
-
-target_include_directories(
- xml
- PUBLIC
- "${CMAKE_CURRENT_LIST_DIR}/src/"
-)
-
-
-# Build unit cases
-enable_testing()
-add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/test")
-