-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
26 lines (21 loc) · 1.01 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
cmake_minimum_required(VERSION 3.28)
project(WayLib_Development)
set(CMAKE_CXX_STANDARD 17)
# Please add WayLib/include to your include path, like this, assuming your project is called _Example_Project_, and the WayLib directory is in the root directory (with CMakeLists.txt):
# This is an example of how to include the header files in your source code.
include_directories(${CMAKE_SOURCE_DIR}/WayLib/include
# ...(other include directories that you need)
)
# This line must be added before the add_executable or add_library command.
add_executable(WayLib_Development
WayLib/include/Util/FileSystem.hpp
WayLib/include/Util/Exceptions.hpp
WayLib/include/CRTP/inject_stream_traits.hpp
WayLib/include/Container/ThreadsafeQueue.hpp
WayLib/include/Util/ThreadPool.hpp
WayLib/include/Util/Range/Range.hpp
WayLib/include/Util/Range/RangeUtil.hpp
WayLib/include/Util/TypeTraits.hpp
WayLib/include/Util/OperatorExtension.hpp
main.cpp
)