mirror of
https://github.com/anope/anope.git
synced 2026-06-26 03:46:39 +02:00
Update cmake version parsing code to deal with recent build version changes
Update Config.cs to no longer hardcode VS generators, it seems no longer necessary. Fix new version system, cannot return C++ types from extern C functions
This commit is contained in:
+4
-1
@@ -105,8 +105,11 @@ void Module::Prioritize()
|
||||
{
|
||||
}
|
||||
|
||||
ModuleVersion::ModuleVersion(int maj, int min, int pa) : version_major(maj), version_minor(min), version_patch(pa)
|
||||
ModuleVersion::ModuleVersion(const ModuleVersionC &ver)
|
||||
{
|
||||
version_major = ver.version_major;
|
||||
version_minor = ver.version_minor;
|
||||
version_patch = ver.version_patch;
|
||||
}
|
||||
|
||||
int ModuleVersion::GetMajor() const
|
||||
|
||||
Reference in New Issue
Block a user