annotate dep/anitomy/CMakeLists.txt @ 46:d0adc4aedfc8
*: update...
this commit:
1. consolidates dark theme stuff to dark_theme.cpp
2. creates a new widgets folder to store all of our
custom widgets
3. creates the list settings page in the information
dialog, although much of it is nonfunctional: it
doesn't save, and the status doesn't even get filled
in... we'll fix this later!
author |
Paper <mrpapersonic@gmail.com> |
date |
Sat, 23 Sep 2023 01:02:15 -0400 |
parents |
5c0397762b53 |
children |
893ad99b174d |
rev |
line source |
9
|
1 cmake_minimum_required(VERSION 3.9)
|
|
2 project(anitomy)
|
|
3 add_library(anitomy SHARED
|
|
4 anitomy/anitomy.cpp
|
|
5 anitomy/element.cpp
|
|
6 anitomy/keyword.cpp
|
|
7 anitomy/parser.cpp
|
|
8 anitomy/parser_helper.cpp
|
|
9 anitomy/parser_number.cpp
|
|
10 anitomy/string.cpp
|
|
11 anitomy/token.cpp
|
|
12 anitomy/tokenizer.cpp
|
|
13 )
|
|
14 set_target_properties(anitomy PROPERTIES
|
|
15 PUBLIC_HEADER anitomy/anitomy.h)
|
|
16 target_include_directories(anitomy PRIVATE src)
|