[Touch-packages] [Bug 1653635] Re: cmake unable to report INCLUDE_DIRS and LIBRARIES

2022-01-20 Thread Timo Röhling
The CMake config exports the `jsoncpp_lib` and `jsoncpp_static` targets,
which will automatically perform all required settings when used with
`target_link_libraries()`. Manually setting the include paths and link
libraries is an anti-pattern.


** Changed in: libjsoncpp (Ubuntu)
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libjsoncpp in Ubuntu.
https://bugs.launchpad.net/bugs/1653635

Title:
  cmake unable to report INCLUDE_DIRS and LIBRARIES

Status in libjsoncpp package in Ubuntu:
  Invalid

Bug description:
  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  Codename: xenial

  $ dpkg -l|grep libjsoncpp
  ii  libjsoncpp-dev:amd64   1.7.2-1
   amd64library for reading and writing JSON for C++ (devel 
files)
  ii  libjsoncpp1:amd64  1.7.2-1
   amd64library for reading and writing JSON for C++

  When try to use jsoncpp, the ${jsoncpp_INCLUDE_DIRS} and
  ${jsoncpp_LIBRARIES} fail to report.

  CMakeLists.txt
  
  cmake_minimum_required(VERSION 2.6.2)
  project(jsoncpp_test)

  find_package(jsoncpp REQUIRED)
  message("FOUND CONFIG: ${jsoncpp_CONFIG}")
  message("INCLUDE DIRS: ${jsoncpp_INCLUDE_DIRS}")
  message("LIBRARIES: ${jsoncpp_LIBRARIES}")

  The actual result is:
  
  FOUND CONFIG: /usr/lib/x86_64-linux-gnu/cmake/jsoncpp/jsoncppConfig.cmake
  INCLUDE DIRS: 
  LIBRARIES:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjsoncpp/+bug/1653635/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1653635] Re: cmake unable to report INCLUDE_DIRS and LIBRARIES

2020-10-20 Thread Gianfranco Costamagna
Hello, as workaround, using pkg-config to detect it should work
pkg_search_module(JSONCPP jsoncpp)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libjsoncpp in Ubuntu.
https://bugs.launchpad.net/bugs/1653635

Title:
  cmake unable to report INCLUDE_DIRS and LIBRARIES

Status in libjsoncpp package in Ubuntu:
  Confirmed

Bug description:
  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  Codename: xenial

  $ dpkg -l|grep libjsoncpp
  ii  libjsoncpp-dev:amd64   1.7.2-1
   amd64library for reading and writing JSON for C++ (devel 
files)
  ii  libjsoncpp1:amd64  1.7.2-1
   amd64library for reading and writing JSON for C++

  When try to use jsoncpp, the ${jsoncpp_INCLUDE_DIRS} and
  ${jsoncpp_LIBRARIES} fail to report.

  CMakeLists.txt
  
  cmake_minimum_required(VERSION 2.6.2)
  project(jsoncpp_test)

  find_package(jsoncpp REQUIRED)
  message("FOUND CONFIG: ${jsoncpp_CONFIG}")
  message("INCLUDE DIRS: ${jsoncpp_INCLUDE_DIRS}")
  message("LIBRARIES: ${jsoncpp_LIBRARIES}")

  The actual result is:
  
  FOUND CONFIG: /usr/lib/x86_64-linux-gnu/cmake/jsoncpp/jsoncppConfig.cmake
  INCLUDE DIRS: 
  LIBRARIES:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjsoncpp/+bug/1653635/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1653635] Re: cmake unable to report INCLUDE_DIRS and LIBRARIES

2017-03-01 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: libjsoncpp (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libjsoncpp in Ubuntu.
https://bugs.launchpad.net/bugs/1653635

Title:
  cmake unable to report INCLUDE_DIRS and LIBRARIES

Status in libjsoncpp package in Ubuntu:
  Confirmed

Bug description:
  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  Codename: xenial

  $ dpkg -l|grep libjsoncpp
  ii  libjsoncpp-dev:amd64   1.7.2-1
   amd64library for reading and writing JSON for C++ (devel 
files)
  ii  libjsoncpp1:amd64  1.7.2-1
   amd64library for reading and writing JSON for C++

  When try to use jsoncpp, the ${jsoncpp_INCLUDE_DIRS} and
  ${jsoncpp_LIBRARIES} fail to report.

  CMakeLists.txt
  
  cmake_minimum_required(VERSION 2.6.2)
  project(jsoncpp_test)

  find_package(jsoncpp REQUIRED)
  message("FOUND CONFIG: ${jsoncpp_CONFIG}")
  message("INCLUDE DIRS: ${jsoncpp_INCLUDE_DIRS}")
  message("LIBRARIES: ${jsoncpp_LIBRARIES}")

  The actual result is:
  
  FOUND CONFIG: /usr/lib/x86_64-linux-gnu/cmake/jsoncpp/jsoncppConfig.cmake
  INCLUDE DIRS: 
  LIBRARIES:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjsoncpp/+bug/1653635/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1653635] Re: cmake unable to report INCLUDE_DIRS and LIBRARIES

2017-01-03 Thread Hans Joachim Desserud
** Tags added: xenial

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libjsoncpp in Ubuntu.
https://bugs.launchpad.net/bugs/1653635

Title:
  cmake unable to report INCLUDE_DIRS and LIBRARIES

Status in libjsoncpp package in Ubuntu:
  New

Bug description:
  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  Codename: xenial

  $ dpkg -l|grep libjsoncpp
  ii  libjsoncpp-dev:amd64   1.7.2-1
   amd64library for reading and writing JSON for C++ (devel 
files)
  ii  libjsoncpp1:amd64  1.7.2-1
   amd64library for reading and writing JSON for C++

  When try to use jsoncpp, the ${jsoncpp_INCLUDE_DIRS} and
  ${jsoncpp_LIBRARIES} fail to report.

  CMakeLists.txt
  
  cmake_minimum_required(VERSION 2.6.2)
  project(jsoncpp_test)

  find_package(jsoncpp REQUIRED)
  message("FOUND CONFIG: ${jsoncpp_CONFIG}")
  message("INCLUDE DIRS: ${jsoncpp_INCLUDE_DIRS}")
  message("LIBRARIES: ${jsoncpp_LIBRARIES}")

  The actual result is:
  
  FOUND CONFIG: /usr/lib/x86_64-linux-gnu/cmake/jsoncpp/jsoncppConfig.cmake
  INCLUDE DIRS: 
  LIBRARIES:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjsoncpp/+bug/1653635/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp