diff options
author | 2024-03-12 13:28:44 +0600 | |
---|---|---|
committer | 2024-03-12 13:28:44 +0600 | |
commit | b5590275651c8d0f80be7c698491725e7382b330 (patch) | |
tree | b0755480c9b4c0a4013f038dc1fe9a6b57b14188 | |
parent | 3ea23c4884c39ab3ebfc1f71c75d04418906ab63 (diff) | |
download | entropy-calc-b5590275651c8d0f80be7c698491725e7382b330.tar.gz entropy-calc-b5590275651c8d0f80be7c698491725e7382b330.zip |
project: Add dependency on gmp & gmpxx
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
-rw-r--r-- | entropy-calculator.cbp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/entropy-calculator.cbp b/entropy-calculator.cbp index 797dabf..0474bf0 100644 --- a/entropy-calculator.cbp +++ b/entropy-calculator.cbp @@ -31,16 +31,24 @@ <Compiler> <Add option="-Wall" /> <Add option="-fexceptions" /> + <Add directory="headers" /> </Compiler> + <Linker> + <Add library="gmp" /> + <Add library="gmpxx" /> + </Linker> <Unit filename="elements/water.h" /> <Unit filename="headers/allElements.cpp" /> <Unit filename="headers/allElements.h" /> + <Unit filename="headers/baseElement.h" /> <Unit filename="headers/readElementState.cpp" /> <Unit filename="headers/readElementState.h" /> - <Unit filename="headers/baseElement.h" /> <Unit filename="main.cpp" /> <Extensions> - <lib_finder disable_auto="1" /> + <lib_finder disable_auto="1"> + <lib name="gmp" /> + <lib name="gmpxx" /> + </lib_finder> </Extensions> </Project> </CodeBlocks_project_file> |