elizagamedev / mkxp-oneshot

mkxp, forked for OneShot
GNU General Public License v2.0
82 stars 31 forks source link

[Conan] Syntax error #26

Closed Speak2Erase closed 2 years ago

Speak2Erase commented 4 years ago

Invalid syntax in def configure(self)

def configure(self):
        if tools.os_info.is_windows:
            # ???
            self.options.openal.shared = True
            # Fix linker error in SDL_sound fork with SDL2
            self.options.sdl2.shared = True

Should be

def configure(self):
        if tools.os_info.is_windows:
            # ???
            self.options["openal"].shared = True
            # Fix linker error in SDL_sound fork with SDL2
            self.options["sdl2"].shared = True

My fork, Astrabit-St/ModshotCore has these fixed.