Skip to content

Commit

Permalink
remember window location and size while using alt+tab
Browse files Browse the repository at this point in the history
fixed interruption creatures setup lair
print game start errors
show message box on exception
pubish pdb and map files too
move window proc functions to separate cpp
  • Loading branch information
DiaLight committed Aug 26, 2024
1 parent 9dd7c13 commit 46e5b0c
Show file tree
Hide file tree
Showing 13 changed files with 494 additions and 247 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ add_subdirectory(mapping)
add_subdirectory(tools)
add_subdirectory(libs)

define_property(
TARGET
PROPERTY TARGET_MAP_FILE
BRIEF_DOCS "Mapping file name"
FULL_DOCS "...")

if(USE_CONFIGURE_DATE)
string(TIMESTAMP CONFIGURE_DATE "%y%m%d")
endif ()
Expand All @@ -60,4 +66,7 @@ endif ()
add_subdirectory(src)

install(TARGETS dkii_flame RUNTIME DESTINATION ".")
install(FILES $<TARGET_PDB_FILE:dkii_flame> DESTINATION ".")
get_target_property(_target_map_file dkii_flame TARGET_MAP_FILE)
install(FILES ${_target_map_file} DESTINATION ".")

Loading

0 comments on commit 46e5b0c

Please sign in to comment.