# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = $(REPOSITORY_DIR)/scripts $(REPOSITORY_DIR)/core $(REPOSITORY_DIR)/octopi $(REPOSITORY_DIR)/graphiq $(PRODUCTION_DIR)/setup_src
+INPUT = $(REPOSITORY_DIR)/scripts $(REPOSITORY_DIR)/nucleus $(REPOSITORY_DIR)/octopi $(REPOSITORY_DIR)/graphiq $(PRODUCTION_DIR)/setup_src
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>hoople_core</name>
+ <name>nucleus</name>
<comment></comment>
<projects>
</projects>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.buildLocation</key>
- <value>${workspace_loc:/hoople_core/Debug}</value>
+ <value>${workspace_loc:/nucleus/Debug}</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key>
// find our storage area for the build headers. we know a couple build
// configurations by now, but this should really be coming out of a config
// file instead.
- astring library_directory = repodir + "/source/lib_src/library";
+ astring library_directory = repodir + "/nucleus/library";
if (!filename(library_directory).good()) {
- library_directory = repodir + "/source/core/library";
- if (!filename(library_directory).good()) {
- library_directory = repodir + "/libraries/library";
- if (!filename(library_directory).good()) {
- library_directory = repodir + "/../../libraries/library";
- if (!filename(library_directory).good()) {
- non_continuable_error(static_class_name(), func,
- astring("failed to locate the library folder storing the generated files."));
- }
- }
- }
+ non_continuable_error(static_class_name(), func,
+ astring("failed to locate the library folder storing the generated files."));
}
// these are very specific paths, but they really are where we expect to
[copy_fortunes_to_tempdir]
source=$UNIX_BIN/cp
-parms="$REPOSITORY_DIR/core/applications/nechung/example.txt" "$SOURCE_TEMP/example.txt"
+parms="$REPOSITORY_DIR/nucleus/applications/nechung/example.txt" "$SOURCE_TEMP/example.txt"
no_pack=true
exec_source=true
; simple file copy to an absolute path.
[wildcard_congelio]
-source=$REPOSITORY_DIR/core/library/test_basis/*
+source=$REPOSITORY_DIR/nucleus/library/test_basis/*
target=$TARGET/muse_files
; wildcards are supported. this will put all the files from that directory
; "test_basis" into the target in a folder called "muse_files".
[wildcard_specific]
-source=$REPOSITORY_DIR/core/library/basis/*.h
+source=$REPOSITORY_DIR/nucleus/library/basis/*.h
target=$TARGET/basis_headers
; this is a more specific wildcard that tests a pattern on the end, rather
; than the "get everything" of a bare asterisk.
[recursing_doodle]
-source=$REPOSITORY_DIR/core
+source=$REPOSITORY_DIR/nucleus
target=$TARGET/srcpack/doodle_src
recurse=1
; this shows a recursive copy of the directory "core" into a new directory
Directories and files of interest here...
-core/
+nucleus/
The hierarchies of compiled code for the basic modules of the Feisty Meow hoople2 codebase.
database/
test_file = ""
if len(self.arguments) > 1:
test_file = self.arguments[1]
- if test_file == "": test_file = os.getenv("REPOSITORY_DIR") + "/source/core/applications/nechung/nechung.vcxproj"
+ if test_file == "": test_file = os.getenv("REPOSITORY_DIR") + "/nucleus/applications/nechung/nechung.vcxproj"
print("test file is: " + test_file)
guid = self.extract_guid_from_project_file(test_file)
ifeq "$(HOOPLE_HEADERS)" ""
#seems like some of this is redundant with earlier 3rdparty exploring.
LOCUS_LIBRARY_HEADERS = $(shell bash -c '\
- if [ -d "$(REPOSITORY_DIR)/core" ]; then \
- echo "$(REPOSITORY_DIR)/core" "$(REPOSITORY_DIR)/octopi" "$(REPOSITORY_DIR)/graphiq" ; \
+ if [ -d "$(REPOSITORY_DIR)/nucleus" ]; then \
+ echo "$(REPOSITORY_DIR)/nucleus" "$(REPOSITORY_DIR)/octopi" "$(REPOSITORY_DIR)/graphiq" ; \
else \
echo ""; \
fi | sed -e "s/\([a-zA-Z]\):\/\(.*\)/\/\1\/\2/" ')
# now compute some more paths with a bit of "heuristics" for where we can
# find the source code.
-export TOOL_SOURCES="$REPOSITORY_DIR/core/tools"
+export TOOL_SOURCES="$REPOSITORY_DIR/nucleus/tools"
if [ ! -d "$TOOL_SOURCES/dependency_tool" -o ! -d "$TOOL_SOURCES/clam_tools" ]; then
if [ ! -d "$TOOL_SOURCES/dependency_tool" -o ! -d "$TOOL_SOURCES/clam_tools" ]; then
echo "This script cannot locate the tool source code folder. This is where the"