Skip to content
Closed
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
3 changes: 3 additions & 0 deletions configure/CONFIG_SITE
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ CHECK_RELEASE = YES
# take effect.
#IOCS_APPL_TOP = </IOC/path/to/application/top>

# Set this when you wish to build the programs to test LZ4 decompression
#BUILD_TEST_LZ4 = YES

# Get settings from AREA_DETECTOR, so we only have to configure once for all detectors if we want to
-include $(AREA_DETECTOR)/configure/CONFIG_SITE
-include $(AREA_DETECTOR)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH)
Expand Down
3 changes: 3 additions & 0 deletions eigerApp/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG

ifeq ($(BUILD_TEST_LZ4), YES)
DIRS := $(DIRS) testLZ4
endif
DIRS := $(DIRS) frozenSrc
DIRS := $(DIRS) tinyCBORSrc
DIRS := $(DIRS) compressionSrc
Expand Down
5 changes: 0 additions & 5 deletions eigerApp/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ else
LIB_SYS_LIBS += hdf5_hl
endif

PROD += test_lz4
test_lz4_SRCS += test_lz4.cpp
test_lz4_LIBS += dectrisCompression
test_lz4_SYS_LIBS += lz4

include $(ADCORE)/ADApp/commonLibraryMakefile

#=============================
Expand Down
18 changes: 18 additions & 0 deletions eigerApp/testLZ4/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE

PROD += test_lz4
test_lz4_SRCS += test_lz4.cpp
test_lz4_LIBS += dectrisCompression
test_lz4_SYS_LIBS += lz4

include $(ADCORE)/ADApp/commonLibraryMakefile

#=============================

include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE

File renamed without changes.
File renamed without changes.
File renamed without changes.