Mercurial > minori
comparison dep/anitomy/CMakeLists.txt @ 343:1faa72660932
*: transfer back to cmake from autotools
autotools just made lots of things more complicated than
they should have and many things broke (i.e. translations)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 20 Jun 2024 05:56:06 -0400 |
parents | |
children | a0aa8c8c4307 |
comparison
equal
deleted
inserted
replaced
342:adb79bdde329 | 343:1faa72660932 |
---|---|
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 CXX_STANDARD 17) | |
16 target_include_directories(anitomy PRIVATE src) |