dependencies

C++/CLI Missing MSVCR90.DLL

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-01 04:41:08
问题 I have a c++/cli dll that I load at runtime and which works great in debug mode. If I try and load the dll in release mode it fails to load stating that one or more dependencies are missing. If I run depends against it I am missing MSVCR90.DLL from MSVCM90.DLL. If I check the debug version of the dll it also has the missing dependency, but against the debug (D) version. I have made sure debug/release embed the manifest file. I read something about there being issues with the app loading the

Is there any virtualenv like tool for c++ out there?

隐身守侯 提交于 2020-01-01 03:17:29
问题 I have found a problem with the test environment in a c++ problem. We have a machine which downloads the code from the version control system and, build it and execute the unit test, nothing new. The problem arise when we add a new dependency in our project. We are developing a lot of features at the same time and it is something relatively common. We this happens we have to advise testers and give them an easy way to reproduce the compilation environment ... And I was thinking if there is

Local dependencies resolved by SBT but not by Play! Framework

筅森魡賤 提交于 2020-01-01 03:09:10
问题 I'm trying to use banana-RDF, a locally published library (published using SBT's publish-local ) from a Play! Framework project, but when running compile from Play's console, the wanted library is not resolved, when using compile from SBT's console everything goes fine. I find this behavior pretty weird as Play uses SBT to resolve dependencies. By the way, I'm using the 0.12.3 version of SBT in my Play project. The error I'm getting when compiling with Play is pretty basic: [warn] module not

How do you generate module dependencies in MANIFEST.MF for JBoss AS 7 with maven?

痴心易碎 提交于 2019-12-31 08:08:16
问题 In JBoss AS 7, a Web application that depends on libraries contained in the AS, must declare those dependencies in META-INF/MANIFEST.MF like this: Dependencies: <package-name> Example: Dependencies: org.slf4j (This is comparable to Import-Package: for OSGi.) Further information can be found in the articles about migration from older versions, class loading and implicit module dependencies for deployments The project is built with Maven. All dependencies included in the AS are declared with

angular 2 injection not work in inheritance

余生颓废 提交于 2019-12-31 05:22:08
问题 recently we upgraded from Angular 2.0 to 2.4 and since then we have problems with inheritance. all dependencies gets undefined if we call the child. the child don't have a constructor, what means it uses the father constructor. this is the code: @Injectable() export class ChildComponent extends ParentComponent { } export class ParentComponent implements OnInit, AfterViewInit, AfterViewChecked { constructor(protected _activitySettingsControlService: ActivitySettingsControlService, protected

Xcode sometimes removes linked library

天涯浪子 提交于 2019-12-30 18:57:13
问题 When using different Frameworks in Xcode, the compiler and linker sometimes do not include that Framework in the library. The result is an immediate crash during the startup with the following message: dyld: Library not loaded: /System/Library/Frameworks/UserNotifications.framework/UserNotifications Referenced from: /var/containers/Bundle/Application/1D41BD68-9B88-4D5D-B7AB-0D1C31979964/App.app/App Reason: image not found I found one way to avoid this. Its just mentioning the parts of that

Could not find com.squareup.picasso:picasso:2.5.2

早过忘川 提交于 2019-12-30 09:43:08
问题 I adding picasso dependencies but seem it not worked. I tried changing the version. But still useless. This my build.gradle (module) apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion '23.0.3' defaultConfig { applicationId "bhouse.travellist_starterproject" minSdkVersion 21 targetSdkVersion 22 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } }

Can't get LWJGL to run using IDEA and SBT

旧巷老猫 提交于 2019-12-30 08:59:08
问题 I've been scratching myself in the head for a little over an hour with this, nothing on Google seems to be able to give me a decisive answer. I'm using IntelliJ IDEA 13.1.3 with the scala and sbt plugins, Scala 2.11.1 , and SBT 0.13 Thinking I was clever I added the Maven repository for LWJGL to my build.sbt libraryDependencies += "org.lwjgl.lwjgl" % "lwjgl" % "2.9.1" Only to later find out that I need to [point the compiler to the LWJGL natives]. Now here's the problem: Asking SBT to

How do I make Pip respect requirements?

邮差的信 提交于 2019-12-30 08:09:26
问题 If I create a setup.py using requires , Pip doesn't install my dependencies. Here's my setup.py: from distutils.core import setup setup(name='my_project', description="Just a test project", version="1.0", py_modules=['sample'], requires=['requests']) I wrote a simple sample.py: import requests def get_example(): return requests.get("http://www.example.com") I then try to install it: $ pip install -e . [15:39:10] Obtaining file:///tmp/example_pip Running setup.py egg_info for package from file

Missing dependency in Gerrit

冷暖自知 提交于 2019-12-30 07:15:54
问题 I had four changes in Gerrit, each depending on previous one (except first, of course). I've abandoned second and third and reviewed first and fourth. Since first wasn't depending on anything, Gerrit managed to auto-merge it. Now, the fourth (depending on abandoned third) is a real problem. Gerrit states Submitted, Merge Pending with: Change could not be merged because of a missing dependency. The following changes must also be submitted: and giving me change-Id of both abandoned changes. How