Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ set(SIMPLEGRAPHIC_SOURCES
"engine/system/sys_main.h"
"engine/system/sys_opengl.h"
"engine/system/sys_video.h"
"SimpleGraphic.rc"
"win/entry.cpp"
"ui.h"
"ui_api.cpp"
Expand Down Expand Up @@ -217,6 +218,11 @@ target_link_libraries(SimpleGraphic
zstd::libzstd_shared
)

target_sources(SimpleGraphic
PRIVATE
SimpleGraphic.rc
)

install(FILES $<TARGET_RUNTIME_DLLS:SimpleGraphic> DESTINATION ".")
install(TARGETS SimpleGraphic RUNTIME DESTINATION ".")

Expand Down
Binary file added SimpleGraphic.rc
Binary file not shown.
3 changes: 2 additions & 1 deletion config.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
// Configuration
//

#define CFG_VERSION "SimpleGraphic v2.2"
#define CFG_VERSION_NUM "2.2"
#define CFG_VERSION "SimpleGraphic v" CFG_VERSION_NUM
#define CFG_TITLE "SimpleGraphic"
#define CFG_LOGFILE "SimpleGraphic/SimpleGraphic.log"
#define CFG_DATAPATH "SimpleGraphic/"
Expand Down
4 changes: 2 additions & 2 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "path-of-building-simplegraphic",
"version": "2.0",
"version": "2.2",
"dependencies": [
"angle",
"curl",
Expand All @@ -15,4 +15,4 @@
"zstd",
"zlib"
]
}
}
Loading