mirror of
https://github.com/nqrduck/LimeDriver.git
synced 2024-11-22 10:02:25 +00:00
Kumi
05b3b0a869
Moved compiled binaries to a dedicated 'bin/' directory to streamline output organization, ensuring that all executables are consolidated in a single, standard location. Updated the gitignore to reflect this change, which helps prevent accidental commits of executable files. The Makefile was also adjusted to build the 'limedriver' program within the new directory structure. Removed the previously tracked binary 'limedriver' to reduce repository clutter and avoid potential merge conflicts with binary files. Now, future compilations will adhere to the new 'bin/' directory convention, improving the project's structure and maintainability.
6 lines
138 B
Makefile
6 lines
138 B
Makefile
CXX = h5c++
|
|
|
|
AM_LDFLAGS = $(shell pkg-config --libs LimeSuite)
|
|
|
|
bin_PROGRAMS = bin/limedriver
|
|
bin_limedriver_SOURCES = src/limedriver.cpp
|