diff options
| author | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-04 06:36:47 -0600 |
|---|---|---|
| committer | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-28 11:05:42 -0600 |
| commit | 07450e9fe80913d280b80cb6eec11572c015ff1c (patch) | |
| tree | defe839c4b55b7ced60093b5e98952c73e5c129d /CMakeLists.txt | |
| parent | 9c6e703bfc06aec0b6bf1b2056fff5302ed4a241 (diff) | |
Add tests aopacket
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..322c90c5 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 3.1.0) + +project(ao) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) +set(CMAKE_AUTOUIC ON) + +if(CMAKE_VERSION VERSION_LESS "3.7.0") + set(CMAKE_INCLUDE_CURRENT_DIR ON) +endif() + +add_subdirectory(test) |
