Skip to content

Commit

Permalink
update CMakeLists to match new Genesis makefile scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
nadavbh12 committed Mar 22, 2017
1 parent 546b8e7 commit 3d2b11d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ ExternalProject_add(snes9x2010_libretro
GIT_REPOSITORY https://github.com/libretro/snes9x2010.git
UPDATE_COMMAND ""
SOURCE_DIR ${SNES9X_DIR}
BINARY_DIR ${SNES9X_DIR}
BUILD_IN_SOURCE 1
CONFIGURE_COMMAND ""
BUILD_COMMAND ${MAKE}
INSTALL_DIR ${LIBDIR}
Expand All @@ -125,19 +125,19 @@ ExternalProject_add(stella_libretro
GIT_REPOSITORY https://github.com/libretro/stella-libretro.git
UPDATE_COMMAND ""
SOURCE_DIR ${STELLA_DIR}
BINARY_DIR ${STELLA_DIR}
CONFIGURE_COMMAND ""
BUILD_COMMAND ${MAKE}
BUILD_IN_SOURCE 1
INSTALL_DIR ${LIBDIR}
INSTALL_COMMAND "${STELLA_INSTALL_COMMAND}"
)
ExternalProject_add(genesis_plus_gx_libretro
GIT_REPOSITORY https://github.com/libretro/Genesis-Plus-GX
UPDATE_COMMAND ""
SOURCE_DIR ${GENESIS_PLUS_GX_DIR}
BINARY_DIR ${GENESIS_PLUS_GX_DIR}
BUILD_IN_SOURCE 1
CONFIGURE_COMMAND ""
BUILD_COMMAND ${MAKE}
BUILD_COMMAND make -f Makefile.libretro
INSTALL_DIR ${LIBDIR}
INSTALL_COMMAND "${GENESIS_INSTALL_COMMAND}"
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run(self):
ds.spawn(['./copy_cores.sh'])
_build.build.run(self)

version = '1.1.4'
version = '1.1.5'
setup(name = 'rle_python_interface',
version=version,
description = 'Retro Learning Environment Python Interface based on Ben Goodrich\'s work',
Expand Down

0 comments on commit 3d2b11d

Please sign in to comment.