Skip to content
This repository has been archived by the owner on Sep 28, 2023. It is now read-only.

Commit

Permalink
Re-arranging package for pip compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Krieger committed Dec 26, 2011
1 parent ee48c01 commit d2824b1
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions python/setup.py → setup.py
Expand Up @@ -43,18 +43,9 @@
if sys.platform == "win32":
libs.append("ws2_32")

shutil.copy("../Client.h", "./")
shutil.copy("../mcdefs.h", "./")
shutil.copy("../PacketWriter.h", "./")
shutil.copy("../PacketReader.h", "./")
shutil.copy("../socketdefs.h", "./")
shutil.copy("../PacketWriter.cpp", "./")
shutil.copy("../PacketReader.cpp", "./")
shutil.copy("../Client.cpp", "./")

module1 = Extension('umemcached',
sources = ['umemcached.cpp', 'PacketReader.cpp', 'PacketWriter.cpp', 'Client.cpp'],
include_dirs = ['./'],
sources = ['umemcached.cpp', 'src/PacketReader.cpp', 'src/PacketWriter.cpp', 'src/Client.cpp'],
include_dirs = ['src/'],
library_dirs = [],
libraries=libs,
define_macros=[('WIN32_LEAN_AND_MEAN', None)])
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d2824b1

Please sign in to comment.