This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 68e6508562a4678bdca324e0d5c321609dc12d21 (tree) |
---|---|
Tiempo | 2023-02-26 05:22:32 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
Attempt to make file_propery.rc.template portable across multiple libraries
@@ -95,7 +95,7 @@ | ||
95 | 95 | |
96 | 96 | # windres.exe for mingw, rc.exe for ms vc++ |
97 | 97 | # 65001 == utf8 |
98 | - set(CMAKE_RC_FLAGS "-v -c 65001 -I${RC_INCLUDE} -Iinclude") | |
98 | + set(CMAKE_RC_FLAGS "-v -c 65001 -I${RC_INCLUDE} -Iinclude\ctools") | |
99 | 99 | else() |
100 | 100 | set(RC_FILES) |
101 | 101 | endif() |
@@ -14,7 +14,7 @@ | ||
14 | 14 | #include "windows.h" |
15 | 15 | |
16 | 16 | #include <ctools\predef\compiler.h> |
17 | -#include <ctools\version_info.h> | |
17 | +#include <version_info.h> | |
18 | 18 | |
19 | 19 | |
20 | 20 | #define VER_COMMA(hi, lo, build) CT_NUMBERIZE(hi),CT_NUMBERIZE(lo),CT_NUMBERIZE(build),0 // Like 0,2,0,0 |