Skip to content

Commit 570b8e4

Browse files
committed
fix manifest settings
1 parent a7d2d67 commit 570b8e4

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

MyWndCtrl/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
# CMake minimum version
77
cmake_minimum_required(VERSION 2.4)
88

9+
# use new policy
10+
cmake_policy(SET CMP0054 NEW)
11+
912
# check build type
1013
if (NOT CMAKE_BUILD_TYPE)
1114
message(STATUS "No build type selected, default to Debug")

READMEJP.txt

+2
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@
272272
スピンコントロールをGUIに追加。
273273
OLEコントロールを一部サポート。
274274
ウィンドウクラスライブラリの扱いを修正。
275+
2018.XX.YY ver.4.5
276+
マニフェストの設定が間違っていたので修正。
275277

276278
/////////////////////////////////////////////////////
277279
// 片山博文MZ (katahiromz) [A.N.T.]

src/RisohEditor_res.rc

+6
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ IDR_MAINFRAME RCDATA "res/RCDATA.bin"
6060

6161
//////////////////////////////////////////////////////////////////////////////
6262

63+
#if !defined(_MSC_VER)
64+
1 MANIFEST "RisohEditor.exe.manifest"
65+
#endif
66+
67+
//////////////////////////////////////////////////////////////////////////////
68+
6369
IDR_MAINACCEL ACCELERATORS
6470
{
6571
"N", ID_NEW, VIRTKEY, CONTROL

0 commit comments

Comments
 (0)