94 lines
1.9 KiB
Plaintext
94 lines
1.9 KiB
Plaintext
# xp_activate32
|
|
|
|
import("//build/config/precompiled_header.gni")
|
|
import("//build/config/static_shared.gni")
|
|
import("//build/config/win/manifest.gni")
|
|
|
|
# Main executable
|
|
executable("xp_activate32") {
|
|
configs -= [
|
|
"//build/config/win:console",
|
|
]
|
|
|
|
configs += [
|
|
"//build/config/win:windowed",
|
|
":xp_activate32_config",
|
|
]
|
|
|
|
deps = [
|
|
":xp_activate32_sources",
|
|
":xp_activate32_manifest",
|
|
]
|
|
}
|
|
|
|
# Precompiled header for common C/C++ stdlib stuff
|
|
precompiled_header("precompiled") {
|
|
precompiled_header = "src/stdafx.h"
|
|
precompiled_source = "src/stdafx.cc"
|
|
}
|
|
|
|
source_set("xp_activate32_sources") {
|
|
# Must explicitly set this for sources
|
|
configs += [ "//build/config/win:windowed", ]
|
|
|
|
configs += [
|
|
":xp_activate32_config",
|
|
#":precompiled"
|
|
]
|
|
|
|
sources = [
|
|
"src/constants.h",
|
|
"src/framework.h",
|
|
"src/globals.h",
|
|
"src/keygen.h",
|
|
"src/strings.h",
|
|
"src/resource.h",
|
|
"src/utils.h",
|
|
"src/xp_activate32.h",
|
|
]
|
|
|
|
sources += [
|
|
"src/keygen.cc",
|
|
"src/strings.cc",
|
|
"src/resource.rc",
|
|
"src/utils.cc",
|
|
"src/xp_activate32.cc",
|
|
]
|
|
|
|
public_deps = [
|
|
"../cr_base:cr_base"
|
|
]
|
|
}
|
|
|
|
# Program-specific build config
|
|
config("xp_activate32_config") {
|
|
defines = []
|
|
cflags = []
|
|
ldflags = []
|
|
defines += [ "USING_CR_BASE" ]
|
|
libs = [
|
|
"comctl32.lib",
|
|
"kernel32.lib",
|
|
"user32.lib",
|
|
"ole32.lib",
|
|
"oleaut32.lib",
|
|
]
|
|
}
|
|
|
|
windows_manifest("xp_activate32_manifest") {
|
|
# No-Op on XP, but need it for running on newer systems to display warning dialog.
|
|
sources = [ require_administrator_manifest ]
|
|
# Breaks program for some reason, despite it using Unicode all throughout
|
|
#sources += [ unicode_manifest, ]
|
|
|
|
# Common controls was never working in the original one, finally have it working.
|
|
if (use_common_controls) {
|
|
sources += [ common_controls_manifest, ]
|
|
}
|
|
}
|
|
|
|
group("xp_activate32_test") {
|
|
testonly = true
|
|
public_deps = [ ]
|
|
}
|