Skip to content

Commit

Permalink
path correction
Browse files Browse the repository at this point in the history
  • Loading branch information
eneskuluk committed Nov 13, 2023
1 parent 713dd79 commit 64070ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@

print("Compiled GenomicsDB Install Path: {}".format(GENOMICSDB_INSTALL_PATH))

GENOMICSDB_INCLUDE_DIR = "/usr/local/include"
GENOMICSDB_LIB_DIR = "/usr/local/lib"
GENOMICSDB_INCLUDE_DIR = os.path.join(GENOMICSDB_INSTALL_PATH, "include")
GENOMICSDB_LIB_DIR = os.path.join(GENOMICSDB_INSTALL_PATH, "lib")
GENOMICSDB_PROTOBUF_DIR = os.path.join(
GENOMICSDB_INSTALL_PATH, "genomicsdb/protobuf/python"
)
Expand Down

0 comments on commit 64070ba

Please sign in to comment.