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

Updated build system #21

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
960283c
converted to cmake type build
astro-friedel Mar 29, 2023
42b2936
added missing include
astro-friedel Apr 14, 2023
74d20a8
moved dependency checking to mail illixr build
astro-friedel Apr 18, 2023
42a96db
better handling of dependencies
astro-friedel Apr 18, 2023
6e1031e
fixed package name
astro-friedel Apr 18, 2023
10981b5
another version update
astro-friedel Apr 18, 2023
ff3c430
fixed scope issue in cmake
astro-friedel Apr 18, 2023
6ee5a23
fixed include paths
astro-friedel Apr 18, 2023
f5ae993
added ILLIXR root variable for headers
astro-friedel Apr 18, 2023
d08ee89
added missing dependency
astro-friedel Apr 18, 2023
4839681
fixed include paths
astro-friedel Apr 18, 2023
40c51b4
fixed typo in dirs
astro-friedel Apr 18, 2023
a6f419c
fixed scope issue and variable name
astro-friedel Apr 19, 2023
61032ab
added install tagets
astro-friedel Apr 20, 2023
bcdd8bf
updates for centos
astro-friedel May 1, 2023
147989c
check
astro-friedel May 2, 2023
604c6ec
added build suffix to library name
astro-friedel May 4, 2023
ca8f56f
fixed incorrect naming
astro-friedel May 5, 2023
f76ccfb
removed un-needed code, added install of sample files
astro-friedel May 11, 2023
bb3e4a7
updated compile definitions
astro-friedel May 11, 2023
714c354
updated ILLIXR code structure
astro-friedel May 17, 2023
0aad861
removed un-needed openCV dependency
astro-friedel Aug 23, 2023
ebc2f04
added spdlog dependency
astro-friedel Sep 14, 2023
ec108fc
added sqlite3 library to link
astro-friedel Mar 27, 2024
c6ee970
converted to switchboard interface for env vars
astro-friedel Nov 22, 2024
a152baa
fixed unclosed endif
astro-friedel Nov 22, 2024
e1302d1
added missing namespace
astro-friedel Nov 22, 2024
b22643c
another namespace issue
astro-friedel Nov 22, 2024
42bb6ef
fixed signature issue
astro-friedel Nov 22, 2024
89b2c8c
fixed up some errors
astro-friedel Nov 22, 2024
b832dc0
bug fixes
astro-friedel Nov 22, 2024
5aaf2e7
remove submodules and removed ifdef
astro-friedel Jan 31, 2025
e83f242
updated for changes in switchboard
astro-friedel Feb 4, 2025
d7ffea3
fix for updates from ILLIXR
astro-friedel Feb 5, 2025
b8a91f4
updated to match guidelines
astro-friedel Feb 17, 2025
0e0630f
removed abort calls
astro-friedel Feb 17, 2025
d05996d
Merge branch 'pre_meerge_fixes' into updatedBuildSystem
astro-friedel Feb 19, 2025
801a572
fix typos
astro-friedel Feb 19, 2025
f2603d8
updated for changes in ILLIXR
astro-friedel Feb 27, 2025
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
Prev Previous commit
Next Next commit
check
astro-friedel committed May 2, 2023
commit 147989c54391a4320c6b779d5df0aaa747ad348c
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@ pkg_check_modules(PORTAUDIO portaudio-2.0>=19)
pkg_check_modules(SPATIALAUDIO spatialaudio)

if(DEFINED INTERNAL_OPENCV)
message("USING INTERNAL ${INTERNAL_OPENCV}")
find_package(OpenCV REQUIRED PATHS ${INTERNAL_OPENCV} NO_DEFAULT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_PACKAGE_REGISTRY NO_CMAKE_SYSTEM_PATH NO_CMAKE_SYSTEM_PACKAGE_REGISTRY)
else()
find_package(OpenCV REQUIRED)