Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

various compatibility updates and another sorting fix #101

Draft
wants to merge 26 commits into
base: v1-main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ tmp/
.sconsign.dblite

#swp
src/Tests/.*.swp


*.swp

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ cmake_minimum_required(VERSION 3.3)
project(CCDB_Project)

add_subdirectory(src)

install(PROGRAMS bin/ccdb DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
install(DIRECTORY python DESTINATION ${CMAKE_INSTALL_PREFIX})
install(DIRECTORY scripts DESTINATION ${CMAKE_INSTALL_PREFIX})

4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import os

#Setup default environment. This environment
if not 'CCDB_HOME' in os.environ:
print "CCDB_HOME environment variable is not found but should be set to compile the CCDB"
print "One can run 'source environment.bash' from your bash shell to automatically set environment variables"
print("CCDB_HOME environment variable is not found but should be set to compile the CCDB")
print("One can run 'source environment.bash' from your bash shell to automatically set environment variables")
exit(1)

#Create 'default' environment. Other environments will be a copy of this one
Expand Down
17 changes: 1 addition & 16 deletions bin/ccdb
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
#!/usr/bin/env python
#!/usr/bin/env python3

if __name__ == "__main__":
import ccdb
ccdb.init_ccdb_console()
















67 changes: 0 additions & 67 deletions projects/CLion/CMakeLists.txt

This file was deleted.

128 changes: 0 additions & 128 deletions projects/Netbeans/Library/Makefile

This file was deleted.

Loading