aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-03-24 11:46:46 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-03-24 11:46:46 +0300
commitf92ad17dce040f06c8ddcc8eba3f19db8105fe01 (patch)
tree6b0651620c5ac3ea3a8b5d76a6edf5acbb96e90c
parentupdate cmake-common (diff)
downloadwinapi-debug-f92ad17dce040f06c8ddcc8eba3f19db8105fe01.tar.gz
winapi-debug-f92ad17dce040f06c8ddcc8eba3f19db8105fe01.zip
WIP
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5ad6d0a..c5296e9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets
project(pdb_repo CXX)
+include(cmake/cmake/common.cmake)
+
find_package(Boost REQUIRED)
add_subdirectory(3rdparty/boost/nowide)
-include(cmake/cmake/common.cmake)
-
file(GLOB_RECURSE pdb_repo_include "include/*.hpp")
file(GLOB_RECURSE pdb_repo_src "src/*.cpp")
add_library(pdb_repo ${pdb_repo_include} ${pdb_repo_src})