Skip to content
Snippets Groups Projects
Commit e53ed00a authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

This is release 2.1.9a (still: now enabling older CMake)

parent 7a9db77c
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ rm -r build/* ...@@ -19,7 +19,7 @@ rm -r build/*
rm *~ rm *~
rm */*~ rm */*~
rm */*/*~ rm */*/*~
rm pub/src/Doxyfile.bak rm src/Doxyfile.bak
### pack ### pack
export A=frida2. # <major>.<minor><bugfix> export A=frida2. # <major>.<minor><bugfix>
...@@ -55,7 +55,7 @@ cd /git/f2 ...@@ -55,7 +55,7 @@ cd /git/f2
git checkout devel git checkout devel
git merge master git merge master
cd /git/f2/pub cd /git/f2/pub
vi configure.ac # version becomes "post-<release>" vi CMakeLists.txt # version becomes "post-<release>"
cd build; mi cd build; mi
kcom # Starting post-... kcom # Starting post-...
......
...@@ -14,7 +14,7 @@ project(Frida) ...@@ -14,7 +14,7 @@ project(Frida)
#set(Frida_VERSION_MINOR 1) #set(Frida_VERSION_MINOR 1)
#set(Frida_VERSION_PATCH 9a) #set(Frida_VERSION_PATCH 9a)
set(Frida_VERSION post-2.1.9a) set(Frida_VERSION 2.1.9a)
# --- General project settings --- # --- General project settings ---
#option(FRIDA_PYTHON "Build with python support" ON) #option(FRIDA_PYTHON "Build with python support" ON)
......
...@@ -82,7 +82,9 @@ ${BISON_xaxyacc_OUTPUTS} ...@@ -82,7 +82,9 @@ ${BISON_xaxyacc_OUTPUTS}
${FLEX_xaxlex_OUTPUTS} ${FLEX_xaxlex_OUTPUTS}
) )
TARGET_INCLUDE_DIRECTORIES(frida PRIVATE ${LIBTRIVIA_INCLUDES} ${LIBREADPLUS_INCLUDES} ) # dependency on libraries' include files
# works only for CMake >= 2.8.11, therefore disabled
#TARGET_INCLUDE_DIRECTORIES(frida PRIVATE ${LIBTRIVIA_INCLUDES} ${LIBREADPLUS_INCLUDES} )
TARGET_LINK_LIBRARIES(frida ${GSL_LIBRARIES} ${FFTW_LIBRARIES} ${LIBTRIVIA_LIBS} ${LIBREADPLUS_LIBS} ${LIBKWW_LIBS} ${LIBCERF_LIBS} ${LIBYAMLFREEZE_LIBS} ${LIBLMFIT_LIBS}) TARGET_LINK_LIBRARIES(frida ${GSL_LIBRARIES} ${FFTW_LIBRARIES} ${LIBTRIVIA_LIBS} ${LIBREADPLUS_LIBS} ${LIBKWW_LIBS} ${LIBCERF_LIBS} ${LIBYAMLFREEZE_LIBS} ${LIBLMFIT_LIBS})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment