diff options
author | John Ankarström <john@ankarstrom.se> | 2022-09-03 15:28:56 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-09-03 15:28:56 +0200 |
commit | 6ae7e24675cff4ff6b808c3024f45083f35ced97 (patch) | |
tree | 2a47273f325d8367db2a8669691273f02ca83eb9 /c/CMakeLists.txt | |
parent | 2cd22c671c67deaf2c1fcb659e3262bf57552557 (diff) | |
download | EpisodeBrowser-6ae7e24675cff4ff6b808c3024f45083f35ced97.tar.gz |
Improve error handling.
Diffstat (limited to 'c/CMakeLists.txt')
-rw-r--r-- | c/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt index 0c8bb83..ccf8812 100644 --- a/c/CMakeLists.txt +++ b/c/CMakeLists.txt @@ -9,7 +9,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED True) add_compile_definitions(UNICODE _UNICODE) if(NOT CMAKE_CONFIGURATION_TYPES MATCHES "Release") - add_compile_definitions(_DEBUG) + add_compile_definitions(_DEBUG NDEBUG) endif() add_executable(EpisodeBrowser WIN32) @@ -24,6 +24,8 @@ target_sources(EpisodeBrowser PRIVATE drag.h episodelistview.cpp episodelistview.h + err.cpp + err.h ext.cpp ext.h listview.cpp |