diff options
author | crupest <crupest@outlook.com> | 2020-05-24 01:40:02 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-05-24 01:40:02 +0800 |
commit | d86a71f79afe0e4dac768f61d6bff690567aca5b (patch) | |
tree | 4957e9a64c77680deb07201fbd879bf036616dae /src/win/CMakeLists.txt | |
parent | f3a8fd608a9776ef0a5f547da918a32cf6074060 (diff) | |
download | cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.gz cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.bz2 cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.zip |
...
Diffstat (limited to 'src/win/CMakeLists.txt')
-rw-r--r-- | src/win/CMakeLists.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/win/CMakeLists.txt b/src/win/CMakeLists.txt index 696ef200..f4062411 100644 --- a/src/win/CMakeLists.txt +++ b/src/win/CMakeLists.txt @@ -1,16 +1,16 @@ set(CRU_WIN_BASE_INCLUDE_DIR ${CRU_INCLUDE_DIR}/cru/win/) add_library(cru_win_base STATIC - debug_logger.hpp + DebugLogger.hpp - exception.cpp - heap_debug.cpp - string.cpp + Exception.cpp + HeapDebug.cpp + String.cpp ) target_sources(cru_win_base PUBLIC - ${CRU_WIN_BASE_INCLUDE_DIR}/exception.hpp - ${CRU_WIN_BASE_INCLUDE_DIR}/string.hpp - ${CRU_WIN_BASE_INCLUDE_DIR}/win_pre_config.hpp + ${CRU_WIN_BASE_INCLUDE_DIR}/Exception.hpp + ${CRU_WIN_BASE_INCLUDE_DIR}/String.hpp + ${CRU_WIN_BASE_INCLUDE_DIR}/WinPreConfig.hpp ) target_compile_definitions(cru_win_base PUBLIC UNICODE _UNICODE) # use unicode target_link_libraries(cru_win_base PUBLIC cru_base) |