diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-28 14:12:46 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-28 14:12:46 +0200 |
commit | 4ea2417101ff930495e07c0afdb34cbae533fee7 (patch) | |
tree | 6440db9713a75723b6c17bf22198e6996b1cfdba /src | |
parent | breakpad: keep all build artifacts (diff) | |
download | smolbote-4ea2417101ff930495e07c0afdb34cbae533fee7.tar.xz |
breakpad: Use system breakpad by default
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e256ee8..3263bbb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -47,9 +47,10 @@ set(srclist plugin.h ) -if(Breakpad) - link_directories("${BREAKPAD_LIBRARY_DIRS}") -endif() +# if you are using a custom build location for breakpad: +#if(Breakpad) +# link_directories("${BREAKPAD_LIBRARY_DIRS}") +#endif() if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") add_executable(${poi_exe} WIN32 ${srclist} ${PROJECT_SOURCE_DIR}/data/windows.rc) |